Dockerized Nagios Service
2.3K
To run a nagios service with default config, use the command below:
docker run -d \
-p 80:80 \
-p 443:443 \
-p 5666:5666 \
guessi/docker-nagios4
To run with persistent data, use the command below:
docker run -d \
-p 80:80 \
-p 443:443 \
-p 5666:5666 \
-v $(pwd)/path/to/config:/opt/nagios/etc:ro \
guessi/docker-nagios4
To run with customized login username/password, use the command below:
docker run -d \
-p 80:80 \
-p 443:443 \
-p 5666:5666 \
-v $(pwd)/path/to/passwd:/opt/nagios/htpasswd.users:ro \
-v $(pwd)/path/to/config:/opt/nagios/etc:ro \
guessi/docker-nagios4
Content type
Image
Digest
sha256:fe6eb65de…
Size
287.3 MB
Last updated
7 months ago
docker pull guessi/docker-nagios4