27 lines
712 B
YAML
27 lines
712 B
YAML
#-p 8080:5000
|
|
#--ulimit nofile=1024
|
|
#--tmpfs /opt/omd/sites/cmk/tmp:
|
|
#uid=1000,gid=1000 -v monitoring:/omd/sites
|
|
#--name monitoring -v /etc/localtime:/etc/localtime:ro
|
|
#--restart always
|
|
#checkmk/check-mk-raw:1.6.0-latest
|
|
|
|
version: "3.6"
|
|
|
|
services:
|
|
check-mk:
|
|
image: checkmk/check-mk-raw:1.6.0-latest
|
|
container_name: check-mk
|
|
ports:
|
|
- "8222:5000"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=100
|
|
ulimits:
|
|
nofile: 1024
|
|
|
|
volumes:
|
|
- type: tmpfs
|
|
target: /opt/omd/sites/cmk/tmp
|
|
- /etc/localtime:/etc/localtime:ro
|
|
#restart always |