mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-03 23:37:32 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			887 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			887 B
		
	
	
	
	
	
	
	
CheckMK
- Pretty complete solution for whole infrastructure monitoring
 - Based on Nagios
 - Complex UI (not very intuitive)
 - Requires "some" learning & setup and doesn't do anything out of the box
 
docker-compose.yml
---
version: '3.6'
services:
  checkmk:
    image: checkmk/check-mk-raw
    container_name: checkmk    
    restart: unless-stopped
    ulimits:
      nofile: 1024
    ports:
      - "3123:5000"
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ./monitoring:/omd/sites
- Open http://localhost:8080/cmk/check_mk/
 - Username is 
cmkadmin - Password is written in the logs when the container starts the first time, so just run 
docker-compose logsafter starting the container