fmartinou / whats-up-docker

What's up Docker ( aka WUD ) gets you notified when a new version of your Docker Container is available.
https://fmartinou.github.io/whats-up-docker
MIT License
915 stars 29 forks source link

Cannot get a reliable tag for this image #406

Open kazkame opened 1 week ago

kazkame commented 1 week ago

using docker swarm, my wud instance does not detect any of my containers. The web pannel loads correctly. It just says: "no containers found" When I look at the logs I have:

13:47:10.097 WARN whats-up-docker/watcher.docker.local: Cannot get a reliable tag for this image [fmartinou/whats-up-docker:6.4.1@sha256:1c00b6e8ae4b24dxxx387a1a84dd47c7aeb4371dxxxec673cdbb64ed16a463xxxxxe4ffe688]

And it shows that warning for all of my containers.

Here is my compose:


version: '3.9'

services:

  whatsupdocker:
    image: fmartinou/whats-up-docker:6.4.1
    networks:
      - backend_network
      # - wp1_network
      # - wp2_network
      # - wp3_network
      # - wp4_network
    deploy:
      replicas: 1
      restart_policy:
        condition: on-failure
        delay: 10s
        max_attempts: 10
        window: 15s
      labels:
        #DEFAULT HEADERS
        - "traefik.enable=true"
        - "traefik.http.routers.wud.rule=Host(`wud.xxxxxxxxxxxxxxxx.fr`)"
        - "traefik.http.routers.wud.entrypoints=websecure"
        - "traefik.http.routers.wud.middlewares=secHeaders@file"
        - "traefik.http.routers.wud.tls=true"
        - "traefik.http.routers.wud.tls.certresolver=letsencrypt"
        - "traefik.http.routers.wud.tls.options=default"
        - "traefik.http.services.wud.loadbalancer.server.port=3000"
        #HOMEPAGE HEADERS
        - "homepage.group=Applications"
        - "homepage.name=wud"
        - "homepage.icon=wud.png"
        - "homepage.href=https://wud.xxxxxxxxxxxxxxxx.fr"
        - "homepage.description=wud Server"
        - "homepage.weight=15"
        #WUD HEADERS
        - "wud.tag.include=^\\d+\\.\\d+\\.\\d+$$"
        - "wud.link.template=https://github.com/fmartinou/whats-up-docker/releases/tag/$${major}.$${minor}.$${patch}"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - wud_store:/store
    healthcheck:
      test: wget --no-verbose --tries=1 --no-check-certificate --spider http://localhost:3000
      interval: 10s
      timeout: 10s
      retries: 3
      start_period: 10s

volumes:

  wud_store:
    external: true

networks:
  backend_network:
    external: true
  # wp1_network:
  #   external: true
  # wp2_network:
  #   external: true
  # wp3_network:
  #   external: true
  # wp4_network:
  #   external: true
kazkame commented 1 week ago

Nm I am using Portainer and I think Portainer deploying is not supported.