fix(docker): prefix compose image names with localhost to prevent Docker Hub lookups
randall/frontend and randall/backend were being resolved as docker.io paths, causing unwanted registry auth attempts. The localhost/ prefix marks them as local-only images. Also restores docker/setup-buildx-action with the docker driver, and reverts the ECR Public mirror workaround since it was never the root cause. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
backend:
|
||||
image: randall/backend:latest
|
||||
image: localhost/randall/backend:latest
|
||||
build:
|
||||
context: ../..
|
||||
dockerfile: cicd/docker/Dockerfile.backend
|
||||
@@ -21,7 +21,7 @@ services:
|
||||
start_period: 10s
|
||||
|
||||
frontend:
|
||||
image: randall/frontend:latest
|
||||
image: localhost/randall/frontend:latest
|
||||
build:
|
||||
context: ../..
|
||||
dockerfile: cicd/docker/Dockerfile.frontend
|
||||
|
||||
Reference in New Issue
Block a user