From 07c74eaf9aa97509cda0fea3726d1ea69f17be79 Mon Sep 17 00:00:00 2001 From: David Schmidt Date: Thu, 7 Jan 2021 18:49:40 +0100 Subject: [PATCH] Added missing file :) --- apps/monitors/checkmk.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 apps/monitors/checkmk.md diff --git a/apps/monitors/checkmk.md b/apps/monitors/checkmk.md new file mode 100644 index 0000000..d4dfc60 --- /dev/null +++ b/apps/monitors/checkmk.md @@ -0,0 +1,40 @@ +# CheckMK + +- Pretty complete solution for whole infrastructure monitoring +- Based on Nagios + +
+ +- [Homepage](https://checkmk.com/) +- [Github repo](https://github.com/tribe29/checkMK) +- [DockerHub repo](https://hub.docker.com/r/checkmk/check-mk-raw) + + +## docker-compose.yml +```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: +``` + +- and go to http://localhost:8080/cmk/check_mk/ +- You will find the provisional password for the cmkadmin account in the logs that are written for this container