Skip to content
Discussion options

You must be logged in to vote

You've actually answered your own question here, the two halves just need connecting. The difference isn't the tag. Both deluan/navidrome:latest and lscr.io/linuxserver/bazarr:latest are non-semver latest. The difference is the registry.

Look at isDigestToWatch in Docker.ts. When there's no wud.watch.digest label and the tag isn't semver, the last line decides it:

return !isDockerHub;

and isDockerHub is true when the domain is empty, docker.io, or *.docker.io. So:

  • deluan/navidrome:latest resolves to docker.io, so isDockerHub is true and the default becomes false. Digest watching is off, which is exactly the log line you saw.
  • lscr.io/linuxserver/bazarr:latest is lscr.io, not Docker Hub, s…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@tanderson1992
Comment options

@dkxmercury
Comment options

Answer selected by tanderson1992
@tanderson1992
Comment options

@dkxmercury
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants