Questions tagged [docker-watchtower]

watchtower - docker container monitor and update support tool

Watchtower restart container when detects that an image of container was changed.

https://github.com/v2tec/watchtower

28 questions
0
votes
0 answers

With containrrr/watchtower, Getting 401 and config.json not found

I'm 99.9% sure I have the correct file automatically created on my Linux VM at the location /root/.docker/config.json. It has the following values with the key x'd out. { "auths": { "https://index.docker.io/v1/": { …
Peter Kellner
  • 14,748
  • 25
  • 102
  • 188
0
votes
0 answers

Watchtower update a not running container

Is it possible to update existing docker containers with Watchtower when a container is not running? Maybe an option to start a container via another docker compose file, update and shutdown again?
Tim
  • 13
  • 2
0
votes
1 answer

Use GITHub actions to make the "latest" version an old version

I'm using GitHub Actions and Docker WatchTower to update my images on the fly when I check-in my software (no, it is not crucial software. It is more important to have a lean CI/CD). name: Docker Image CI on: push: branches: [ main ] jobs: …
feder
  • 1,849
  • 2
  • 25
  • 43
0
votes
1 answer

docker watchtower - pull access denied from private docker repository

I've beent trying to setup a automatic docker pulling environment. Here's my commands. -starting app container $docker run -d index.docker.io// -starting watchtower with config.json $docker run -d --name watchtower -v…
Lou
  • 73
  • 1
  • 8
0
votes
2 answers

Using Renovate in Kubernetes like Docker-Compose's Watchtower

While looking for a kubernetes equivalent of the docker-compose watchtower container, I stumbled upon renovate. It seems to be a universal tool to update docker tags, dependencies and more. They also have an example of how to run the service itself…
0
votes
1 answer

Watchtower with GCR's gcloud cred helper

Has anyone figured out how to pull from private GCR repos in the containrrr watchtower image in docker compose? For context, I ran gcloud auth configure-docker in the host, and added these volumes to watchtower: version: "3.4" services: app: …
0
votes
1 answer

Docker hub image fails but building its Dockerfile works. What is happening?

I have used Docker-compose a lot recently, but this time I found a container I really want to use but the docker hub’s image is not compatible with my arm/v6 raspberry pi. Using it anyway results in standard_init_linux.go:219: exec user process…
0
votes
1 answer

Unable to implement WatchTower in Docker

I am trying to implement Watchtower which auto-build a container if any updates are found in Docker image. These are commands I used for implementing watchtower: git clone https://github.com/linuxacademy/content-express-demo-app.git watchtower cd…
0
votes
1 answer

Is there a global hook mechanism for Docker Watchtower?

I am currently developing a service composed of multiple containers, described in a docker-compose file. I need an automated mechanism to update my container images. Watchtower seems to be an appropriate solution, except that i need to call a script…
0
votes
1 answer

watchtower update docker images

The watchtower will update the docker images as and when it pushed to a private or public repo. Is there a way to make it more granular? EX: dockeraname imagename docker1 ubuntu16.04 docker2 ubuntu16.04 docker3 …
Pruthvi Raj
  • 574
  • 8
  • 15
0
votes
1 answer

is it possible write watchtower logs in single file in aws

I have developed one small application. For logs , i'm using watchtower in aws. logs are working fine.Logs are inserted in cloudwatch by file wise logs in aws but i wants all logs to be registered in a single file only (for example api.views ) .is…
0
votes
1 answer

Docker custom registry with watchtower

I have 2 VM in local network with Ubuntu OS. On one of them is installed Docker registry container with basic authentication (htpasswd) but without any certificates. Normally I'm accessing registry from other "client" machine and can pull the…
Dragon
  • 303
  • 3
  • 5
0
votes
1 answer

Unable to run Watchtower - FATA[0000] /var/run/docker.sock: no such file or director

Everyone. I'm running Docker Client: Version: 1.8.2 API version: 1.20 Go version: go1.4.2 Git commit: 0a8c2e3 Built: Thu Sep 10 19:19:00 UTC 2015 OS/Arch: linux/amd64 Server: Version: 1.8.2 API version: 1.20 Go…
Sig
  • 5,476
  • 10
  • 49
  • 89
1
2