Docker-Notify can send you a mail when a Docker image gets updated.
- Copy the
config.env.templatefile intoconfig.env
- Fill out the
config.envfile: - The
updateRecheckfield represents the interval (in minutes) in which the repositories are checked for new versions - Fill out the fields for SMTP. This will give
Docker-Notifyaccess to a mail account to send the notification mails from. - Set the
mailReceiverfield to the mail address which should receive the notifications. - Set the
repositoriesfield to a list of repositories (repositories are separated with a comma) in the following format:user/repoName:tag - If the repository is an official repository, you can leave out the
userand just addrepoName:tagto the list. - If the
tagis left out (example:user/repoName), you will receive a mail about any updates made (e.g. nightly builds) - Build and start the Docker container for
docker-notifyby runningdocker-compose up. - If you add or remove a repository to/from the list, you need to execute
docker-compose upagain.