Commit inicial: CheckMK RAW con Traefik/NPM, sin standalone

This commit is contained in:
2025-12-05 09:37:55 +01:00
commit f1f2fdc3c3
5 changed files with 438 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
checkmk:
container_name: checkmk
image: checkmk/check-mk-raw:latest
restart: unless-stopped
environment:
CMK_SITE_ID: ${CMK_SITE_ID:-monitoring}
CMK_PASSWORD: ${CMK_PASSWORD}
volumes:
- checkmk_data:/omd/sites
networks:
- proxy
tmpfs:
- /opt/omd/sites/${CMK_SITE_ID:-monitoring}/tmp:uid=1000,gid=1000
volumes:
checkmk_data:
name: checkmk_data
networks:
proxy:
external: true