A process for automating Docker container base image updates. https://containrrr.dev/watchtower/
Find a file
2024-09-21 08:48:43 +02:00
.devbots add automatic issue locking 2020-04-25 21:56:57 +02:00
.github chore(deps): update docker/login-action digest to 9780b0c 2024-07-26 07:13:08 +02:00
cmd feat: Checking if DOCKER_API_VERSION is set, if not set it to 1.44, if its lower then 1.44 log warning 2024-07-30 10:27:49 +02:00
dockerfiles chore(deps): update alpine docker tag to v3.20.3 2024-09-08 15:28:55 +02:00
docs chore: add custom domain 2024-07-09 09:41:57 +02:00
grafana fix(templates): fix typo in grafana dashboard.json (#1305) 2022-06-10 10:09:25 +02:00
internal chore(go): rename 2024-07-08 15:27:17 +02:00
pkg feat: bump docker versions, remove deprecations 2024-07-08 17:20:54 +02:00
prometheus Prometheus support (#450) 2021-01-06 22:28:32 +01:00
scripts feat(docs): add template preview (#1777) 2023-10-02 16:11:04 +02:00
tplprev chore(go): rename 2024-07-08 15:27:17 +02:00
.all-contributorsrc chore: fix json syntax error in .all-contributorsrc (#1867) 2023-12-02 15:35:56 +01:00
.codacy.yml exclude markdown files from coverage analysis 2019-04-17 21:44:31 +02:00
.editorconfig docs: add containrrr-dark color scheme (#1427) 2022-10-14 15:06:13 +02:00
.gitignore chore(ci): update workflows 2024-07-08 10:04:50 +02:00
build.sh chore(ci): update build.sh 2024-07-08 09:03:31 +02:00
CNAME Create CNAME 2024-07-09 08:45:41 +02:00
code_of_conduct.md chore: Update readme, add some hints, fix markdown 2024-07-09 09:00:00 +02:00
CONTRIBUTING.md chore: Update readme, add some hints, fix markdown 2024-07-09 09:00:00 +02:00
docker-compose.yml Prometheus support (#450) 2021-01-06 22:28:32 +01:00
docs-requirements.txt ci: add pip caching for docs workflow (#1292) 2022-05-24 10:28:48 +02:00
go.mod fix(deps): update module github.com/docker/docker to v27.3.1+incompatible 2024-09-21 08:48:43 +02:00
go.sum fix(deps): update module github.com/docker/docker to v27.3.1+incompatible 2024-09-21 08:48:43 +02:00
gopher-watchtower.png add logo to repo 2020-05-01 13:13:14 +02:00
goreleaser.yml chore(ci): Update goreleaser 2024-07-08 16:10:26 +02:00
LICENSE.md Possibility to disable the TLS verify for sending mails. 2018-02-27 01:23:28 +01:00
logo.png Add files via upload 2020-06-22 19:41:09 +02:00
main.go chore(go): rename 2024-07-08 15:27:17 +02:00
mkdocs.yml chore(go): rename 2024-07-08 15:27:17 +02:00
oryxBuildBinary feat: add a label take precedence argument (#1754) 2023-09-16 17:13:41 +02:00
README.md chore: Update readme, add some hints, fix markdown 2024-07-09 09:00:00 +02:00
renovate.json Add renovate.json 2024-07-08 06:33:04 +00:00
SECURITY.md chore: Update readme, add some hints, fix markdown 2024-07-09 09:00:00 +02:00

Watchtower

Note

This is a fork of the really nice project from containrrr called watchtower.

I am not the original author of this project. I just forked it to make some changes to it and keep it up-to-date as properly as I can.

Contributions, tips and hints are welcome. Just open an issue or a pull request. Please be aware that I am by no means a professional developer. I am just a Platform Engineer.

A process for automating Docker container base image updates.



codecov GoDoc Go Report Card latest version Apache-2.0 License Pulls from DockerHub

Quick Start

With watchtower you can update the running version of your containerized app simply by pushing a new image to the Docker Hub or your own image registry.

Watchtower will pull down your new image, gracefully shut down your existing container and restart it with the same options that were used when it was deployed initially. Run the watchtower container with the following command:

$ docker run --detach \
    --name watchtower \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    beatkind/watchtower

Watchtower is intended to be used in homelabs, media centers, local dev environments, and similar. We do not recommend using Watchtower in a commercial or production environment. If that is you, you should be looking into using Kubernetes. If that feels like too big a step for you, please look into solutions like MicroK8s and k3s that take away a lot of the toil of running a Kubernetes cluster.

Documentation

The full documentation is available at https://watchtower.devcdn.net.