From 2cfdc3ac3efc8672514fb1eb64ae0371605f5f7c Mon Sep 17 00:00:00 2001 From: Jan <59206115+Threated@users.noreply.github.com> Date: Mon, 7 Jul 2025 15:36:14 +0200 Subject: [PATCH] feat(dnpm): allow setting custom dnpm image tag (#326) --- ccp/modules/dnpm-node-compose.yml | 4 ++-- minimal/modules/dnpm-node-compose.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ccp/modules/dnpm-node-compose.yml b/ccp/modules/dnpm-node-compose.yml index c1f7dde..62e04b7 100644 --- a/ccp/modules/dnpm-node-compose.yml +++ b/ccp/modules/dnpm-node-compose.yml @@ -43,7 +43,7 @@ services: - "traefik.http.routers.dnpm-auth.tls=true" dnpm-portal: - image: ghcr.io/dnpm-dip/portal:latest + image: ghcr.io/dnpm-dip/portal:{DNPM_IMAGE_TAG:-latest} container_name: bridgehead-dnpm-portal environment: - NUXT_API_URL=http://dnpm-backend:9000/ @@ -58,7 +58,7 @@ services: dnpm-backend: container_name: bridgehead-dnpm-backend - image: ghcr.io/dnpm-dip/backend:latest + image: ghcr.io/dnpm-dip/backend:{DNPM_IMAGE_TAG:-latest} environment: - LOCAL_SITE=${ZPM_SITE}:${SITE_NAME} # Format: {Site-ID}:{Site-name}, e.g. UKT:Tübingen - RD_RANDOM_DATA=${DNPM_SYNTH_NUM:--1} diff --git a/minimal/modules/dnpm-node-compose.yml b/minimal/modules/dnpm-node-compose.yml index 8c2b146..6c220e7 100644 --- a/minimal/modules/dnpm-node-compose.yml +++ b/minimal/modules/dnpm-node-compose.yml @@ -43,7 +43,7 @@ services: - "traefik.http.routers.dnpm-auth.tls=true" dnpm-portal: - image: ghcr.io/dnpm-dip/portal:latest + image: ghcr.io/dnpm-dip/portal:{DNPM_IMAGE_TAG:-latest} container_name: bridgehead-dnpm-portal environment: - NUXT_API_URL=http://dnpm-backend:9000/ @@ -58,7 +58,7 @@ services: dnpm-backend: container_name: bridgehead-dnpm-backend - image: ghcr.io/dnpm-dip/backend:latest + image: ghcr.io/dnpm-dip/backend:{DNPM_IMAGE_TAG:-latest} environment: - LOCAL_SITE=${ZPM_SITE}:${SITE_NAME} # Format: {Site-ID}:{Site-name}, e.g. UKT:Tübingen - RD_RANDOM_DATA=${DNPM_SYNTH_NUM:--1}