Skip to content

Common Issues

Image digest differs from the original

Stack Overflow

Error missing signature key

You are likely using an outdated version of Docker. Update Docker to the latest version.

Stack Overflow

Using SOCKS5 with Watchtower

To use a proxy with Watchtower, you need to perform additional configuration similar to the configuration for Docker. Instead of JSON file parameters, they are set in the environment variables HTTPS_PROXY and NO_PROXY.

Example Compose file:

yml
services:
  watchtower:
    image: containrrr/watchtower
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    environment:
      HTTPS_PROXY: "socks5://proxy.huecker.io:443"
      NO_PROXY: "ghcr.io"