GHCR
#1081
Replies: 1 comment 4 replies
-
Where did you find this key |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have this docker compose setup:
diun:
container_name: diun
image: crazymax/diun:latest
volumes:
- "./data:/data"
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
- "TZ=Europe/Paris"
- "LOG_LEVEL=info"
- "DIUN_PROVIDERS_DOCKER=true"
- "DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT=true"
- "DIUN_REGISTRIES_GHCRIO_USERNAME=sirhaffy"
- "DIUN_REGISTRIES_GHCRIO_PASSWORD=SECRET_PAT"
restart: always
And I get this error:
WRN Cannot get remote manifest error="cannot get image digest from HEAD request: unable to retrieve auth token: invalid username/password: unauthorized" image=ghcr.io/sirhaffy/njord:latest provider=docker
But the PAT works when I login (docker login ghcr.io -u sirhaffy -p PAT).
Can´t find much info on this, should it work?
Beta Was this translation helpful? Give feedback.
All reactions