From 1fb0a6e6a588577b5a7775b2c9d83f7c603a94bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bardon?= Date: Tue, 10 Dec 2024 17:50:04 +0100 Subject: [PATCH] feat: Make `compose.yaml` more flexible --- compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index abcc821..2f467db 100644 --- a/compose.yaml +++ b/compose.yaml @@ -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" @@ -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"