Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker tags0.15 #25

Merged
merged 4 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VSAC_API_KEY=changeMe
COMPOSE_PROJECT_NAME=rems_dev
VSAC_API_KEY=#ReplaceMe
COMPOSE_PROJECT_NAME=rems_demo
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ services:
- DB_VENDOR=h2
volumes:
- rems_prod_keycloak-data:/opt/keycloak/data/
image: codexrems/keycloak:0.14
image: codexrems/keycloak:0.15

# Create test-ehr container
test-ehr: # Name of our service
container_name: rems_prod_test-ehr
ports: # Port binding to host from docker container
- '8080:8080' # Bind port 3000 of host to 3000 of container
image: codexrems/test-ehr:0.14
image: codexrems/test-ehr:0.15
environment:
- oauth_token=http://host.docker.internal:8180/realms/ClientFhirServer/protocol/openid-connect/token
extra_hosts:
- "host.docker.internal:host-gateway"

# Create crd request generator container
request-generator: # Name of our service
image: codexrems/request-generator:0.14
image: codexrems/request-generator:0.15
container_name: rems_prod_request-generator
environment:
- REACT_APP_EHR_SERVER_TO_BE_SENT_TO_REMS_ADMIN_FOR_PREFETCH=http://host.docker.internal:8080/test-ehr/r4
Expand All @@ -38,14 +38,14 @@ services:

# Create rems-smart-on-fhir container
rems-smart-on-fhir:
image: codexrems/rems-smart-on-fhir:0.14
image: codexrems/rems-smart-on-fhir:0.15
container_name: rems_prod_rems-smart-on-fhir
ports:
- "4040:4040"

# Create rems container
rems-administrator: # Name of our service
image: codexrems/rems-administrator:0.14
image: codexrems/rems-administrator:0.15
container_name: rems_prod_rems
ports: # Port binding to host from docker container
- "8090:8090"
Expand All @@ -68,7 +68,7 @@ services:

# Create pims container
pims:
image: codexrems/pims:0.14
image: codexrems/pims:0.15
container_name: rems_prod_pims
environment:
REMS_ADMIN_BASE: http://rems-administrator:8090
Expand Down
Loading