Skip to content

Docker container for monitoring the status changes of other containers.

License

Notifications You must be signed in to change notification settings

chief8192/docker-observer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-observer

Docker container for monitoring the status changes of other containers.

Building

$ sudo docker build --tag "chief8192/docker-observer" .

Configuring

Configuration is done by way of a config.json file with the following format:

{
  "pushover_app_token": "",
  "pushover_user_key": ""
}

Configuration properties

Property Required Description
pushover_app_token No Pushover app token to use when sending push notifications.
pushover_user_key No Pushover user key to use when sending push notifications.

Running

$ sudo docker run \
    --detach \
    --name="docker-observer" \
    --network="host" \
    --restart="always" \
    --volume="${PWD}/config.json:/config.json:ro" \
    --volume="/var/run/docker.sock:/var/run/docker.sock" \
    "chief8192/docker-observer:latest"

About

Docker container for monitoring the status changes of other containers.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published