-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdocker-compose.yml
31 lines (26 loc) · 1.1 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
orthanc:
# note: you need a post 22.2.0 tag (first tag with S3 plugin included)
image: orthancteam/orthanc
ports: [8042:8042]
environment:
- ORTHANC__AWS_S3_STORAGE__BUCKET_NAME=test-s3-plugin-orthanc-team
- ORTHANC__AWS_S3_STORAGE__REGION=eu-west-3
- ORTHANC__AWS_S3_STORAGE__ENABLE_AWS_SDK_LOGS=true
- ORTHANC__AWS_S3_STORAGE__ACCESS_KEY=AK1234
- ORTHANC__POSTGRESQL__HOST=database-test.cluster-cydazert.eu-central-1.rds.amazonaws.com
- ORTHANC__POSTGRESQL__PORT=5432
- ORTHANC__POSTGRESQL__USERNAME=postgres
- ORTHANC__POSTGRESQL__DATABASE=
- ORTHANC__POSTGRESQL__ENABLE_SSL=true
- ORTHANC__AUTHENTICATION_ENABLED=false
- ORTHANC__DICOM_SERVER_ENABLED=false
- VERBOSE_ENABLED=true
secrets:
- ORTHANC__AWS_S3_STORAGE__SECRET_KEY
- ORTHANC__POSTGRESQL__PASSWORD
secrets:
ORTHANC__AWS_S3_STORAGE__SECRET_KEY:
file: aws-s3-secret-key.txt
ORTHANC__POSTGRESQL__PASSWORD:
file: rds-password.txt