A process for automating Docker container base image updates. https://containrrr.dev/watchtower/
Find a file
2024-07-08 15:27:17 +02:00
.devbots add automatic issue locking 2020-04-25 21:56:57 +02:00
.github chore(go): bump go to 1.22 2024-07-08 15:27:17 +02:00
cmd fix: set nopull param from args (#1830) 2023-11-11 14:50:43 +01:00
dockerfiles chore(deps): update qmcgaw/gluetun docker tag to v3.38.0 2024-07-08 15:07:53 +02:00
docs chore(deps): bump go/stdlib to v1.20.x (#1850) 2023-11-13 14:31:45 +01:00
grafana fix(templates): fix typo in grafana dashboard.json (#1305) 2022-06-10 10:09:25 +02:00
internal chore(deps): bump go/stdlib to v1.20.x (#1850) 2023-11-13 14:31:45 +01:00
pkg feat(docs): add linking and output messages (#1831) 2023-11-11 14:57:21 +01: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 feat(docs): add template preview (#1777) 2023-10-02 16:11:04 +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
code_of_conduct.md Create code_of_conduct.md 2020-06-24 12:21:56 +02:00
CONTRIBUTING.md Fix typos (#554) 2020-05-29 10:59:52 +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 chore(go): bump go to 1.22 2024-07-08 15:27:17 +02:00
go.sum fix(deps): update module github.com/docker/go-connections to v0.5.0 2024-07-08 12:05:00 +02:00
gopher-watchtower.png add logo to repo 2020-05-01 13:13:14 +02:00
goreleaser.yml chore(go): bump go to 1.22 2024-07-08 15:27:17 +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 fix: remove linting issues 2019-07-22 12:10:57 +02:00
mkdocs.yml docs: add "HTTP API Mode" link to nav menu (#1645) 2023-05-07 12:12:55 +02:00
oryxBuildBinary feat: add a label take precedence argument (#1754) 2023-09-16 17:13:41 +02:00
README.md chore(go): bump go to 1.22 2024-07-08 15:27:17 +02:00
renovate.json Add renovate.json 2024-07-08 06:33:04 +00:00
SECURITY.md Create SECURITY.md 2021-04-21 10:01:33 +02:00

Watchtower

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://beatkind.dev/watchtower.