nils måsén

Results 390 comments of nils måsén

Update; it sort of worked when I tried it: ``` 2021-08-31T18:00:53Z [D] Doing a HEAD request to fetch a digest url: https://index.docker.io/v2/containrrr/watchtower/manifests/latest 2021-08-31T18:00:53Z [D] Found a remote digest to compare...

The cause of the error above is: https://github.com/containers/podman/issues/9803 (Finding 4) Additionally, the "name" is not accepted by podman, since it has a leading slash: ``` INFO[0003] Creating /nginx-test ERRO[0003] Error...

Found the cause of the image always being treated as "stale": ``` nils@xiwangmu:~ $ sudo curl -s --unix-socket /run/podman/podman.sock 'http://d/v3.0.0/containers/nginx-test/json' | jq -C '.Image' "docker.io/library/nginx:latest" ``` Podman doesn't return the...

1. This is due to `--notification-report` which adds the `.Report` extra data to the template data (and moves the entries into `.Entries`). `.Report` is only populated at the end of...

I still aim to do this at some point...

This is indeed intended. The generally used way to get the information you mention above is with notifications, but having it output the summary after a run-once would absolutely make...

Let's continue using this issue for now. I made a PoC of this, and the current output looks like this: ``` ❯ go run . --run-once --porcelain INFO[0001] Watchtower v0.0.0-unknown...

Yeah, initial work for allowing custom certs for notification service was started in https://github.com/containrrr/shoutrrr/pull/185, and the cert pool would need to be seeded from watchtowers side. Using the same pool...

Could someone show the logs of a run? If you are running with `--cleanup` there should be a log entry for every removed image.

You can name your link anything, it should point at your normal `config.json` and be a symlink (not a hardlink). Example: ``` ln -s ~/.docker/config.json ~/.docker/config-linked.json ``` ``` docker run...