-
Notifications
You must be signed in to change notification settings - Fork 15
/
docker-compose.yml
50 lines (45 loc) · 1.54 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: "2"
services:
orthanc-fast-ssd:
image: orthancteam/orthanc
ports: ["8043:8042"]
volumes:
- "/fast-ssd/orthanc-storage:/var/lib/orthanc/db/files"
- "/fast-ssd/fast-db:/var/lib/orthanc/db/sql"
environment:
ORTHANC_JSON: |
{
"Name": "orthanc-fast-ssd",
"AuthenticationEnabled": false,
"StorageDirectory": "/var/lib/orthanc/db/files",
"IndexDirectory": "/var/lib/orthanc/db/sql"
}
# uncomment either the s3 or the azure service depending on your cloud provider
# orthanc-s3:
# image: orthancteam/orthanc
# ports: [8044:8042]
# volumes:
# - "/fast-ssd/s3-db:/var/lib/orthanc/db/sql"
# environment:
# ORTHANC__AWS_S3_STORAGE__BUCKET_NAME: "test-orthanc-s3-plugin"
# ORTHANC__AWS_S3_STORAGE__REGION: "eu-central-1"
# ORTHANC__AWS_S3_STORAGE__ACCESS_KEY: "AK123456789"
# ORTHANC__AWS_S3_STORAGE__SECRET_KEY: "XXX"
# ORTHANC_JSON: |
# {
# "Name": "orthanc-s3",
# "AuthenticationEnabled": false,
# "IndexDirectory": "/var/lib/orthanc/db/sql"
# }
orthanc-azure:
image: orthancteam/orthanc
ports: [8044:8042]
volumes:
- "/fast-ssd/azure-db:/var/lib/orthanc/db/sql"
environment:
- ORTHANC__AZURE_BLOB_STORAGE__CONTAINER_NAME=testcontainer
- ORTHANC__AZURE_BLOB_STORAGE__CONNECTION_STRING=xxxxx
- ORTHANC__AUTHENTICATION_ENABLED=false
- ORTHANC__DICOM_SERVER_ENABLED=false
- VERBOSE_ENABLED=false
- VERBOSE_STARTUP=true