18 lines
386 B
YAML
18 lines
386 B
YAML
services:
|
|
checkmk:
|
|
image: ${CHECKMK_IMAGE}
|
|
container_name: ${CONTAINER_NAME}
|
|
ports:
|
|
- "${PORT1}:5000"
|
|
- "${PORT2}:8000"
|
|
- "${PORT3}:6557"
|
|
environment:
|
|
- CMK_SITE_ID=${CMK_SITE_ID}
|
|
volumes:
|
|
- ${VOLUME1}:/omd/sites
|
|
- ${VOLUME2}:/etc/localtime:ro
|
|
ulimits:
|
|
nofile:
|
|
soft: 1024
|
|
hard: 1024
|
|
restart: always |