Remove fallback to Docker Hub for frontend and backend images
Some checks are pending
Some checks are pending
This commit is contained in:
parent
92c784dcf1
commit
299b8d4a33
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ services:
|
|||
- sharenet-network
|
||||
|
||||
backend:
|
||||
image: ${REGISTRY:-ghcr.io}/${IMAGE_NAME:-your-username/sharenet}/backend:${IMAGE_TAG:-latest}
|
||||
image: ${REGISTRY}/${IMAGE_NAME:-your-username/sharenet}/backend:${IMAGE_TAG:-latest}
|
||||
container_name: sharenet-backend
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
|
@ -44,7 +44,7 @@ services:
|
|||
- sharenet-network
|
||||
|
||||
frontend:
|
||||
image: ${REGISTRY:-ghcr.io}/${IMAGE_NAME:-your-username/sharenet}/frontend:${IMAGE_TAG:-latest}
|
||||
image: ${REGISTRY}/${IMAGE_NAME:-your-username/sharenet}/frontend:${IMAGE_TAG:-latest}
|
||||
container_name: sharenet-frontend
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
|
|
Loading…
Add table
Reference in a new issue