self-hosted-cookbook/apps/monitors/checkmk.md
2021-01-07 18:49:40 +01:00

858 B

CheckMK

  • Pretty complete solution for whole infrastructure monitoring
  • Based on Nagios

docker-compose.yml

---
version: '3.6'

services:
  checkmk:
    container_name: checkmk
    image: checkmk/check-mk-raw
    tmpfs:
      - /opt/omd/sites/cmk/tmp:uid=1000,gid=1000
    ulimits:
      nofile: 1024
    volumes:
      - ./monitoring:/omd/sites
      - /etc/localtime:/etc/localtime:ro
    ports:
      - "8080:5000"
    restart: unless-stopped
    networks:
      checkmk_network:

networks:
    checkmk_network: