From 3dccd18e8c512964c788b3025c510797727ac418 Mon Sep 17 00:00:00 2001 From: Russ Poetker <132305281+rpoet-jh@users.noreply.github.com> Date: Fri, 22 Mar 2024 14:59:59 -0400 Subject: [PATCH] Revert "Change image value to be parameterized" This reverts commit 2a8c6c54e2993ef67c953e2267ba7d98137c6d0e. --- .env | 3 --- docker-compose.yml | 8 ++++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.env b/.env index ac30915b..e09aa5cc 100644 --- a/.env +++ b/.env @@ -1,8 +1,5 @@ PASS_VERSION=1.5.0-SNAPSHOT -IMAGE_URI=ghcr.io/eclipse-pass/ -IMAGE_VERSION=:${PASS_VERSION} - ################################################### # PASS_CORE config ################################ ################################################### diff --git a/docker-compose.yml b/docker-compose.yml index 94ce88db..6bdb5eb2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,7 +22,7 @@ version: '3.8' # - eclipse-pass.nightly.yml services: auth: - image: "${IMAGE_URI}pass-auth${IMAGE_VERSION}" + image: "ghcr.io/eclipse-pass/pass-auth:${PASS_VERSION}" container_name: auth env_file: - .env @@ -31,7 +31,7 @@ services: - back pass-core: - image: "${IMAGE_URI}pass-core-main${IMAGE_VERSION}" + image: "ghcr.io/eclipse-pass/pass-core-main:${PASS_VERSION}" container_name: pass-core env_file: - .env @@ -39,7 +39,7 @@ services: - back pass-ui: - image: "${IMAGE_URI}pass-ui${IMAGE_VERSION}" + image: "ghcr.io/eclipse-pass/pass-ui:${PASS_VERSION}" build: context: ./ember args: @@ -64,7 +64,7 @@ services: proxy: build: ./demo-proxy/ - image: "${IMAGE_URI}proxy${IMAGE_VERSION}" + image: "ghcr.io/eclipse-pass/proxy:${PASS_VERSION}" container_name: proxy env_file: - .env