Skip to content

Commit

Permalink
chore: set data dolphin version by environment variable in docker com…
Browse files Browse the repository at this point in the history
…pose
  • Loading branch information
Jan Kühnlein committed Jul 26, 2024
1 parent 17039fc commit 90fd75c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
DATA_DOLPHIN_VERSION=0.1.8

# INFRASTRUCTURE
TEMPORAL_VERSION=1.22.4
TEMPORAL_UI_VERSION=2.21.0
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.base.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# base file for dev and prod deployments
services:
app:
image: ghcr.io/jank1310/datadolphin:latest
image: ghcr.io/jank1310/datadolphin:${DATA_DOLPHIN_VERSION}
command: node /app/nextjs/server.js
restart: always
ports:
- 3000:3000
worker:
image: ghcr.io/jank1310/datadolphin:latest
image: ghcr.io/jank1310/datadolphin:${DATA_DOLPHIN_VERSION}
command: node /app/worker/worker.js
restart: always
# STORAGE
Expand Down

0 comments on commit 90fd75c

Please sign in to comment.