Skip to content

Commit

Permalink
feat: Make compose.yaml more flexible
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBardon committed Dec 10, 2024
1 parent 7c6cad1 commit 1fb0a6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
api:
image: proseim/prose-pod-api:latest
image: "${PROSE_POD_API_IMAGE:-proseim/prose-pod-api:${PROSE_POD_API_IMAGE_TAG:-${DEFAULT_DOCKER_TAG:-latest}}}"
ports:
- "8000:8000"
- "8080:8080"
Expand All @@ -19,7 +19,7 @@ services:
- "${ENV_FILE-.env}"

server:
image: proseim/prose-pod-server:latest
image: "${PROSE_POD_SERVER_IMAGE:-proseim/prose-pod-server:${PROSE_POD_SERVER_IMAGE_TAG:-${DEFAULT_DOCKER_TAG:-latest}}}"
ports:
- "5222:5222"
- "5269:5269"
Expand Down

0 comments on commit 1fb0a6e

Please sign in to comment.