Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot get a reliable tag for this image #406

Open
kazkame opened this issue Jun 21, 2024 · 1 comment
Open

Cannot get a reliable tag for this image #406

kazkame opened this issue Jun 21, 2024 · 1 comment

Comments

@kazkame
Copy link

kazkame commented Jun 21, 2024

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
Copy link
Author

kazkame commented Jun 25, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant