Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrickboom committed Sep 19, 2024
1 parent db7f6c4 commit ecc7e83
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
17 changes: 8 additions & 9 deletions minimal-setup/keycloak-meddream-full/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: "3"
services:

nginx:
image: orthancteam/orthanc-nginx:24.7.1
image: orthancteam/orthanc-nginx:24.9.0
depends_on: [orthanc, orthanc-auth-service, orthanc-for-api, meddream-viewer, keycloak]
restart: unless-stopped
ports: ["80:80"]
Expand All @@ -24,7 +24,7 @@ services:
ENABLE_ORTHANC_FOR_API: "true"

orthanc:
image: orthancteam/orthanc:24.7.1
image: orthancteam/orthanc:24.8.3
volumes:
- orthanc-storage:/var/lib/orthanc/db
depends_on: [orthanc-db]
Expand Down Expand Up @@ -76,7 +76,7 @@ services:
}
orthanc-auth-service:
image: orthancteam/orthanc-auth-service:24.7.1
image: orthancteam/orthanc-auth-service:24.9.0
depends_on: [keycloak, meddream-token-service]
# permissions can be customized in the permissions.json file
volumes:
Expand Down Expand Up @@ -104,7 +104,7 @@ services:
POSTGRES_HOST_AUTH_METHOD: "trust"

keycloak:
image: orthancteam/orthanc-keycloak:24.7.1
image: orthancteam/orthanc-keycloak:24.9.0
depends_on: [keycloak-db]
restart: unless-stopped
environment:
Expand All @@ -114,8 +114,7 @@ services:
KC_DB_URL: "jdbc:postgresql://keycloak-db:5432/keycloak"
KC_DB_USERNAME: "keycloak"
KC_DB_PASSWORD: "keycloak"
# KC_HOSTNAME_URL: "https://mydomain.com/keycloak"
# KC_HOSTNAME_ADMIN_URL: "https://mydomain.com/keycloak"
# KC_HOSTNAME: "https://mydomain.com/keycloak"

keycloak-db:
image: postgres:14
Expand All @@ -127,11 +126,11 @@ services:
POSTGRES_DB: "keycloak"

meddream-token-service:
image: orthancteam/meddream-token-service:24.7.1
image: orthancteam/meddream-token-service:24.9.0
restart: unless-stopped

meddream-viewer:
image: orthancteam/meddream-viewer:24.7.1
image: orthancteam/meddream-viewer:24.9.0
restart: unless-stopped
depends_on:
- orthanc-for-api
Expand All @@ -153,7 +152,7 @@ services:

# An orthanc dedicated for API accesses and also used by MedDream
orthanc-for-api:
image: orthancteam/orthanc:24.7.1
image: orthancteam/orthanc:24.8.3
volumes:
- orthanc-storage:/var/lib/orthanc/db
- ./meddream-plugin.py:/scripts/meddream-plugin.py
Expand Down
11 changes: 5 additions & 6 deletions minimal-setup/keycloak/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: "3"
services:

nginx:
image: orthancteam/orthanc-nginx:24.7.1
image: orthancteam/orthanc-nginx:24.9.0
depends_on: [orthanc, orthanc-auth-service, keycloak]
restart: unless-stopped
ports: ["80:80"]
Expand All @@ -24,7 +24,7 @@ services:
ENABLE_OHIF: "true"

orthanc:
image: orthancteam/orthanc:24.7.1
image: orthancteam/orthanc:24.8.3
volumes:
- orthanc-storage:/var/lib/orthanc/db
depends_on: [orthanc-db]
Expand Down Expand Up @@ -90,7 +90,7 @@ services:
}
orthanc-auth-service:
image: orthancteam/orthanc-auth-service:24.7.1
image: orthancteam/orthanc-auth-service:24.9.0
# always disable port mapping in production !!!
# ports: ["8000:8000"]
# permissions can be customized in the permissions.json file
Expand Down Expand Up @@ -124,7 +124,7 @@ services:

# to use OHIF-plugin: you don't need this container
ohif:
image: orthancteam/ohif-v3:24.7.1
image: orthancteam/ohif-v3:24.9.0
# uncomment if you want to customize ohif configuration
# volumes:
# - ./ohif-app-config.js:/usr/share/nginx/html/app-config.js
Expand All @@ -142,8 +142,7 @@ services:
KC_DB_URL: "jdbc:postgresql://keycloak-db:5432/keycloak"
KC_DB_USERNAME: "keycloak"
KC_DB_PASSWORD: "keycloak"
# KC_HOSTNAME_URL: "https://mydomain.com/keycloak"
# KC_HOSTNAME_ADMIN_URL: "https://mydomain.com/keycloak"
# KC_HOSTNAME: "https://mydomain.com/keycloak"

keycloak-db:
image: postgres:14
Expand Down
2 changes: 1 addition & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ BREAKING CHANGES:
- Keycloak Docker image env var `KC_HOSTNAME_ADMIN_URL` is removed (no longer needed)



v 24.7.2
========

- added `PROXY_READ_TIMEOUT` env var for nginx
- fix: read KEYCLOAK_CLIENT_SECRET from secrets or environment variable


v 24.7.1
========

Expand Down

0 comments on commit ecc7e83

Please sign in to comment.