docker-monit/README.md

61 lines
1.8 KiB
Markdown
Raw Normal View History

2018-02-28 18:32:53 +00:00
# Monit - UNIX Systems Management
Run Monit inside docker.
[![Monit](https://mmonit.com/monit/img/logo.png)](https://mmonit.com/monit/)
[Monit](https://mmonit.com/monit/) is a free open source utility for managing and monitoring, processes, programs, files, directories and filesystems on a UNIX system. Monit conducts automatic maintenance and repair and can execute meaningful causal actions in error situations.
Default username/password: `admin/monit`
2020-09-12 12:09:57 +00:00
## Versions
| Docker image | Monit |
| ---------------------- | --------- |
| `kijart/monit:latest`  | `5.26.0`  |
| `kijart/monit:1.2.0`  | `5.26.0`  |
| `kijart/monit:1.1.0`  | `5.25.2`  |
| `kijart/monit:1.0.2`  | `5.25.1`  |
| `kijart/monit:1.0.1`  | `5.25.1`  |
| `kijart/monit:1.0.0`  | `5.25.1`  |
2018-02-28 18:32:53 +00:00
## Docker setup
Install docker: <https://docs.docker.com/engine/installation/>
2018-02-28 18:32:53 +00:00
Install docker compose: <https://docs.docker.com/compose/install/>
2018-03-03 12:09:49 +00:00
Docker documentation: <https://docs.docker.com/>
2018-02-28 18:32:53 +00:00
### Build-in docker image
- build docker image `docker build -t monit .`
- start monit: `docker run --rm -it -p 2812:2812 -v $(pwd)/monitrc:/etc/monitrc monit`
2018-02-28 19:10:16 +00:00
### Docker Hub image
- pull docker image from docker hub: `docker pull kijart/monit:latest`
2018-02-28 19:10:16 +00:00
- start monit: `docker run --rm -it -p 2812:2812 -v $(pwd)/monitrc:/etc/monitrc kijart/monit:latest`
2018-02-28 19:10:16 +00:00
- create a docker container:
```bash
2018-02-28 19:10:16 +00:00
docker create \
--name=monit \
-p 2812:2812 \
-v $(pwd)/monitrc:/etc/monitrc \
kijart/monit:latest
2018-02-28 19:10:16 +00:00
```
2018-03-03 12:09:49 +00:00
### Docker compose
- create a container using docker-compose: `docker-compose up --no-start`
- start monit: `docker-compose up`
2018-02-28 19:10:16 +00:00
### Troubleshooting
If when starting Monit returns the following message: `The control file '/etc/monitrc' permission 0755 is wrong, maximum 0700 allowed`, simply give the appropriate permissions to _monitrc_: `chmod 700 monitrc`.