-
-
Save Jorge-Nunes/47e21d3fdc39e918a59c59bcdd813416 to your computer and use it in GitHub Desktop.
check_mk via compose (clean config)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| version: '3' | |
| services: | |
| checkmk: | |
| image: checkmk/check-mk-raw:2.0.0-latest | |
| ports: | |
| - "162:162/udp" | |
| - "514:514/udp" | |
| - "514:514/tcp" | |
| - "6557:6557/tcp" | |
| - "8080:5000/tcp" | |
| environment: | |
| - MAIL_RELAY_HOST=mailrelay.example.com | |
| - CMK_SITE_ID=cmknew | |
| - CMK_PASSWORD=XXX | |
| - CMK_LIVESTATUS_TCP=on | |
| volumes: | |
| - /etc/localtime:/etc/localtime:ro | |
| - cmknew:/omd/sites | |
| volumes: | |
| cmknew: | |
| # --hostname 'mymonitoring.mydomain.com'. | |
| #capabilities fuer tmpfs | |
| # volumes aus folders mit git drunter | |
| # local/share/check_mk oder local/share generell | |
| # volumes aus folders mit git drunter (o.ae.) | |
| # etc/check_mk/conf.d | |
| # achtung credentials | |
| # wichtigst: main config, apache parameter | |
| # overlay ueber normalen container: | |
| #deflate und expiry settings etc. alles nach $OMD_SITE/etc/apache... | |
| # logging 3x pruefen, dass keine lookups gemacht werden |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment