Replies: 1 comment 1 reply
-
Looks like Docker Hub somehow blocks container download even we are marked as OSS. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trying to use i2pd via docker in a debian 12 installation. This code is part of a larger working file.
` #-----------
i2pd:
image: purplei2p/i2pd:latest
container_name: i2pd
environment:
- PUID=1000
- PGID=1000
- TZ=AEurope/Brussels
volumes:
- /home/USER/persistent/i2pd:/var/lib/i2pd
ports:
- 7070:7070
- 4444:4444
- 4447:4447
- 7656:7656
restart: unless-stopped
`
When running the command docker-compose up - d i get the following error by pulling the image
` Pulling i2pd (i2pd:)...
ERROR: The image for the service you're trying to recreate has been removed. If you continue, volume data could be lost. Consider backing up your data before continuing.
Continue with the new image? [yN]y
Pulling i2pd (i2pd:)...
ERROR: pull access denied for i2pd, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
`
i've tried several different image locations but they all give me the same error.
docker.io/i2pd:latest
i2pd
Any help would be welcome
Beta Was this translation helpful? Give feedback.
All reactions