You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the How Tos - do I need to use make local-dev-quay to get quay enabled ?
cd clair
make local-dev-quay
make: Nothing to be done for `local-dev-quay'.
So that do not work for me, if I do docker-compose up -d I get ( Here I would expect a quay container to be started)
[+] Running 4/4
✔ Container clair-database Healthy
✔ Container clair-matcher Started
✔ Container clair-indexer Started
✔ Container clair-traefik Started
If I then try docker-compose up quay -d, I see this
[+] Running 4/4
✔ Container quay-redis Started
✔ Container clair-database Running
✔ Container clair-quay Started
! quay The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
docker-compose ps reveals this
NAME IMAGE COMMAND SERVICE CREATED STATUS PORTS
clair-database docker.io/library/postgres:12 "docker-entrypoint.s…" clair-database 5 minutes ago Up 5 minutes (healthy) 5432/tcp
clair-indexer quay.io/projectquay/golang:1.22 "go run . -conf /etc…" indexer 5 minutes ago Up 5 minutes
clair-matcher quay.io/projectquay/golang:1.22 "go run . -conf /etc…" matcher 5 minutes ago Up 5 minutes
clair-quay quay.io/projectquay/quay:latest "dumb-init -- /quay-…" quay 2 minutes ago Up 2 minutes 7443/tcp, 8080/tcp, 8443/tcp, 9091/tcp, 55443/tcp
clair-traefik docker.io/library/traefik:v2.2 "/entrypoint.sh trae…" traefik 5 minutes ago Up 5 minutes 0.0.0.0:6060->6060/tcp, :::6060->6060/tcp, 80/tcp, 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp, 0.0.0.0:32792->5432/tcp, [::]:32792->5432/tcp, 0.0.0.0:32793->8443/tcp, [::]:32793->8443/tcp
quay-redis docker.io/library/redis:6.2 "docker-entrypoint.s…" redis 2 minutes ago Up 2 minutes 6379/tcp
Is this the way to go ? if so then how can I create an admin user on quay so that I can upload a local images for testing,
(Port localhost:8080 leaves me with the traefik dashboard ) Did I miss something obvious from the documentation.
Docker Compose version 2.30.1
go version go1.23.2 darwin/arm64
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Guys,
From the How Tos - do I need to use
make local-dev-quay
to get quay enabled ?So that do not work for me, if I do
docker-compose up -d
I get ( Here I would expect a quay container to be started)If I then try docker-compose up quay -d, I see this
docker-compose ps reveals this
Is this the way to go ? if so then how can I create an admin user on quay so that I can upload a local images for testing,
(Port
localhost:8080
leaves me with the traefik dashboard ) Did I miss something obvious from the documentation.Any assistance is highly appreciated
Beta Was this translation helpful? Give feedback.
All reactions