Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.49 KB

File metadata and controls

58 lines (48 loc) · 1.49 KB

Monit in Docker

Barking at daemons, from Docker

CICD UPDATE PUBLISH

Avaliable on DockerHub

Monit monitoring in Docker container.

Monit monitoring in Docker container. The container is based on the latest Debian LTS with Monit compiled from https://mmonit.com/monit/

Included tools

  • nmap
  • rsync
  • xmlstarlet
  • curl
  • wakeonlan
  • snmp
  • bc
  • jq
  • yq
  • xq
  • tcptraceroute
  • iperf3
  • ripgrep
  • netcat-openbsd
  • arping
  • dnsutils

If you need some other utility please file a bug.

Usage

Run:

docker run --rm -d -p 2812:2812 --name monit -v /home/git/monitrc.example:/config/monitrc clickbg/monit:latest

Compose:

monit:
  image: "clickbg/monit"
  container_name: "monit"
  restart: always
  volumes:
    - ${CONFDIR}/monit:/config
  ports:
    - "2812:2812"
  environment:
    - PUID=1000
    - PGID=1000
    - TZ=Europe/Sofia
  security_opt:
    - no-new-privileges