Skip to content

Commit

Permalink
add sensible default in case no .env is around
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-portier committed May 16, 2024
1 parent a9fd1bb commit 2f5e82a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ services:
content-unification:
build:
context: ./services/content-unification
image: ghcr.io/vlizbe/vocabserver-app/content-unification:${TAG_VERSION}
image: ghcr.io/vlizbe/vocabserver-app/content-unification:${TAG_VERSION:-latest}
volumes:
- ./data/vocab-fetch:/share
- ./services/content-unification/:/app
Expand All @@ -143,7 +143,7 @@ services:
restart: always
logging: *default-logging
webcomponent:
image: ghcr.io/vlizbe/vocabserver-webcomponent:${TAG_VERSION}
image: ghcr.io/vlizbe/vocabserver-webcomponent:${TAG_VERSION:-latest}
ldes-consumer-manager:
image: redpencil/ldes-consumer-manager:0.1.0
environment:
Expand All @@ -156,7 +156,7 @@ services:
vocab-configs:
build:
context: ./services/vocab-configs
image: ghcr.io/vlizbe/vocabserver-app/vocab-configs:${TAG_VERSION}
image: ghcr.io/vlizbe/vocabserver-app/vocab-configs:${TAG_VERSION:-latest}
environment:
MU_APPLICATION_FILE_STORAGE_PATH: "vocab-configs/"
MODE: "development"
Expand Down

0 comments on commit 2f5e82a

Please sign in to comment.