Skip to content

Commit 3a38353

Browse files
committed
update to latest version + name tls volume
1 parent 7c31536 commit 3a38353

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

minimal-setup/keycloak/docker-compose.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: "3"
66
services:
77

88
nginx:
9-
image: orthancteam/orthanc-nginx:25.8.1
9+
image: orthancteam/orthanc-nginx:25.9.0
1010
depends_on: [orthanc, orthanc-auth-service, keycloak]
1111
restart: unless-stopped
1212
ports: ["80:80"]
@@ -15,6 +15,9 @@ services:
1515
# volumes:
1616
# - /.../crt.pem:/etc/nginx/tls/crt.pem
1717
# - /.../key.pem:/etc/nginx/tls/key.pem
18+
# if using orthancteam/orthanc-nginx-certbot image, map the volume
19+
# volumes:
20+
# - tls:/etc/letsencrypt
1821
environment:
1922
ENABLE_ORTHANC: "true"
2023
ENABLE_KEYCLOAK: "true"
@@ -24,7 +27,7 @@ services:
2427
ENABLE_OHIF: "true"
2528

2629
orthanc:
27-
image: orthancteam/orthanc:25.8.2
30+
image: orthancteam/orthanc:25.10.5
2831
volumes:
2932
- orthanc-storage:/var/lib/orthanc/db
3033
depends_on: [orthanc-db]
@@ -114,7 +117,7 @@ services:
114117
}
115118
116119
orthanc-auth-service:
117-
image: orthancteam/orthanc-auth-service:25.8.1
120+
image: orthancteam/orthanc-auth-service:25.9.0
118121
# always disable this port mapping in production !!!
119122
# ports: ["8000:8000"]
120123
# permissions can be customized in the permissions.json file
@@ -142,21 +145,23 @@ services:
142145
orthanc-db:
143146
image: postgres:14
144147
restart: unless-stopped
148+
# always disable this port mapping in production !!!
149+
# ports: ["5432:5432"]
145150
volumes: ["orthanc-db:/var/lib/postgresql/data"]
146151
environment:
147152
POSTGRES_HOST_AUTH_METHOD: "trust"
148153

149154
# to use OHIF-plugin: you don't need this container
150155
ohif:
151-
image: orthancteam/ohif-v3:25.8.1
156+
image: orthancteam/ohif-v3:25.9.0
152157
# uncomment if you want to customize ohif configuration
153158
# volumes:
154159
# - ./ohif-app-config.js:/usr/share/nginx/html/app-config.js
155160
restart: unless-stopped
156161

157162

158163
keycloak:
159-
image: orthancteam/orthanc-keycloak:25.8.1
164+
image: orthancteam/orthanc-keycloak:25.9.0
160165
depends_on: [keycloak-db]
161166
restart: unless-stopped
162167
environment:
@@ -185,3 +190,4 @@ volumes:
185190
orthanc-storage:
186191
orthanc-db:
187192
keycloak-db:
193+
# tls:

0 commit comments

Comments
 (0)