Skip to content

Commit

Permalink
INFRA: use .env tag version variable for vlizbe images
Browse files Browse the repository at this point in the history
  • Loading branch information
MilanLamote committed May 15, 2024
1 parent f4f49ba commit 90563ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TAG_VERSION=
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-logging: &default-logging
max-file: "3"
services:
frontend:
image: ghcr.io/vlizbe/vocabserver-frontend:latest
image: ghcr.io/vlizbe/vocabserver-frontend:${TAG_VERSION}
restart: always
logging: *default-logging
identifier:
Expand Down Expand Up @@ -108,7 +108,7 @@ services:
restart: always
logging: *default-logging
vocab-fetch:
image: ghcr.io/vlizbe/vocabserver-app/vocab-fetch:latest
image: ghcr.io/vlizbe/vocabserver-app/vocab-fetch:${TAG_VERSION}
volumes:
- ./data/vocab-fetch:/share
- ./services/vocab-fetch/:/app
Expand All @@ -120,7 +120,7 @@ services:
restart: always
logging: *default-logging
content-unification:
image: ghcr.io/vlizbe/vocabserver-app/content-unification:latest
image: ghcr.io/vlizbe/vocabserver-app/content-unification:${TAG_VERSION}
volumes:
- ./data/vocab-fetch:/share
- ./services/content-unification/:/app
Expand All @@ -139,7 +139,7 @@ services:
restart: always
logging: *default-logging
webcomponent:
image: ghcr.io/vlizbe/vocabserver-webcomponent:latest
image: ghcr.io/vlizbe/vocabserver-webcomponent:${TAG_VERSION}
ldes-consumer-manager:
image: redpencil/ldes-consumer-manager:0.1.0
environment:
Expand All @@ -150,7 +150,7 @@ services:
restart: always
logging: *default-logging
vocab-configs:
image: ghcr.io/vlizbe/vocabserver-app/vocab-configs:latest
image: ghcr.io/vlizbe/vocabserver-app/vocab-configs:${TAG_VERSION}
environment:
MU_APPLICATION_FILE_STORAGE_PATH: "vocab-configs/"
MODE: "development"
Expand Down

0 comments on commit 90563ef

Please sign in to comment.