You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
657 B
YAML
26 lines
657 B
YAML
# docker-compose.yml
|
|
# Docker Hub: https://hub.docker.com/r/checkmk/check-mk-raw
|
|
# Documentation: https://docs.checkmk.com/latest/en/
|
|
# The WebUI can be found at http://<HOST_IP>:<WEBUI_PORT>
|
|
|
|
networks:
|
|
<NETWORK_NAME>:
|
|
external: true
|
|
|
|
services:
|
|
checkmk:
|
|
container_name: checkmk
|
|
image: checkmk/check-mk-raw:<VERSION_TAG>
|
|
networks:
|
|
- <NETWORK_NAME>
|
|
ports:
|
|
- "5000:5000" # WebUI Port
|
|
- "8000:8000" # Checkmk Agent Port
|
|
restart: unless-stopped
|
|
tmpfs:
|
|
- /opt/omd/sites/cmk/tmp:uid=1000,gid=1000
|
|
ulimits:
|
|
nofile: 1024
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ./sites:/omd/sites |