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
|
- sharenet-network
|
||||||
|
|
||||||
backend:
|
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
|
container_name: sharenet-backend
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
@ -44,7 +44,7 @@ services:
|
||||||
- sharenet-network
|
- sharenet-network
|
||||||
|
|
||||||
frontend:
|
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
|
container_name: sharenet-frontend
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Add table
Reference in a new issue