A process for automating Docker container base image updates. https://containrrr.dev/watchtower/
Find a file
2024-07-08 20:13:45 +02:00
.devbots add automatic issue locking 2020-04-25 21:56:57 +02:00
.github chore(ci): fix releaser 2024-07-08 16:10:26 +02:00
cmd chore(go): rename 2024-07-08 15:27:17 +02:00
dockerfiles chore(go): rename 2024-07-08 15:27:17 +02:00
docs chore(go): rename 2024-07-08 15:27:17 +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
code_of_conduct.md chore(go): rename 2024-07-08 15:27:17 +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 fix(deps): update module github.com/onsi/ginkgo to v2 2024-07-08 20:13:45 +02:00
go.sum feat: bump docker versions, remove deprecations 2024-07-08 17:20:54 +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(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.