Skip to content

Commit

Permalink
feat(docker): enable pulling images from registry
Browse files Browse the repository at this point in the history
After work on the CI pipeline, this should now work by default.
  • Loading branch information
jesseylin committed Jul 27, 2023
1 parent d320f9d commit cdad552
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions services/prod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ services:
extends:
file: ../base/docker-compose.yml
service: app
# image: ${DOCKER_REGISTRY-adtool}/prod-app:${RELEASE_TAG-latest}
image: ${DOCKER_REGISTRY-adtool}/app:${RELEASE_TAG-latest}
##### GATEWAY #####
gateway:
extends:
file: ../base/docker-compose.yml
service: gateway
# image: ${DOCKER_REGISTRY-adtool}/prod-gateway:${RELEASE_TAG-latest}
image: ${DOCKER_REGISTRY-adtool}/gateway:${RELEASE_TAG-latest}
##### APP DB #####
app-db:
extends:
Expand All @@ -31,16 +31,16 @@ services:
extends:
file: ../base/docker-compose.yml
service: expe-db-api
# image: ${DOCKER_REGISTRY-adtool}/prod-expe-db-api:${RELEASE_TAG-latest}
image: ${DOCKER_REGISTRY-adtool}/expe-db-api:${RELEASE_TAG-latest}
##### AUTODISC SERVER #####
autodisc-server:
extends:
file: ../base/docker-compose.yml
service: autodisc-server
# image: ${DOCKER_REGISTRY-adtool}/prod-autodisc-server:${RELEASE_TAG-latest}
image: ${DOCKER_REGISTRY-adtool}/autodisc-server:${RELEASE_TAG-latest}
##### JUPYTER LAB #####
jupyter:
extends:
file: ../base/docker-compose.yml
service: jupyter
# image: ${DOCKER_REGISTRY-adtool}/prod-jupyter:${RELEASE_TAG-latest}
image: ${DOCKER_REGISTRY-adtool}/jupyter:${RELEASE_TAG-latest}

0 comments on commit cdad552

Please sign in to comment.