Skip to content

Commit

Permalink
Revert "Change image value to be parameterized"
Browse files Browse the repository at this point in the history
This reverts commit 2a8c6c5.
  • Loading branch information
rpoet-jh committed Mar 22, 2024
1 parent 2a8c6c5 commit 3dccd18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .env
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
PASS_VERSION=1.5.0-SNAPSHOT

IMAGE_URI=ghcr.io/eclipse-pass/
IMAGE_VERSION=:${PASS_VERSION}

###################################################
# PASS_CORE config ################################
###################################################
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -31,15 +31,15 @@ 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
networks:
- back

pass-ui:
image: "${IMAGE_URI}pass-ui${IMAGE_VERSION}"
image: "ghcr.io/eclipse-pass/pass-ui:${PASS_VERSION}"
build:
context: ./ember
args:
Expand All @@ -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
Expand Down

0 comments on commit 3dccd18

Please sign in to comment.