Compare commits
2 Commits
0f2482d1c9
...
614d729232
Author | SHA1 | Date | |
---|---|---|---|
614d729232 | |||
3156585e8e |
@ -17,17 +17,17 @@ authorization.defaultLoginPermissions=SEARCH,EXPORT_ISO,EXPORT_ARCH,FORWARD,REPO
|
||||
com.softneta.meddream.pacs.configurations[0].type=Orthanc
|
||||
com.softneta.meddream.pacs.configurations[0].id=Orthanc
|
||||
com.softneta.meddream.pacs.configurations[0].baseUrl=http://orthanc:8042
|
||||
com.softneta.meddream.pacs.configurations[0].username=orthanc
|
||||
com.softneta.meddream.pacs.configurations[0].password=orthanc
|
||||
com.softneta.meddream.pacs.configurations[0].username=dicom
|
||||
com.softneta.meddream.pacs.configurations[0].password=letmein
|
||||
com.softneta.meddream.pacs.configurations[0].pythonPlugin=true
|
||||
com.softneta.meddream.pacs.configurations[0].searchApiEnabled=true
|
||||
com.softneta.meddream.pacs.configurations[0].imageApiEnabled=true
|
||||
# com.softneta.meddream.pacs.configurations[0].dicomCacheDirectory=
|
||||
#com.softneta.meddream.pacs.configurations[0].storeScuAet=PACS
|
||||
#com.softneta.meddream.pacs.configurations[0].storeScuAet=BLACKFISH
|
||||
#com.softneta.meddream.pacs.configurations[0].storeScuIp=orthanc
|
||||
#com.softneta.meddream.pacs.configurations[0].storeScuPort=4242
|
||||
|
||||
com.softneta.meddream.pacs.configurations[0].storeScpAet=PACS
|
||||
com.softneta.meddream.pacs.configurations[0].storeScpAet=BLACKFISH
|
||||
com.softneta.meddream.pacs.configurations[0].storeScpIp=orthanc
|
||||
com.softneta.meddream.pacs.configurations[0].storeScpPort=4242
|
||||
|
||||
|
@ -1,18 +1,23 @@
|
||||
services:
|
||||
|
||||
postgres:
|
||||
image: postgres
|
||||
image: postgres:17
|
||||
container_name: postgres
|
||||
networks:
|
||||
- pacs
|
||||
volumes:
|
||||
- ${POSTGRES_DATA_MNT}:${PGDATA}
|
||||
environment:
|
||||
- PGPASSWORD='secret'
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
- PGDATA=${PGDATA}
|
||||
- PGTZ=${PGTZ}
|
||||
healthcheck:
|
||||
test: [ "CMD", "pg_isready", "-q", "-d", "${DB_DATABASE}", "-U", "${DB_USERNAME}" ]
|
||||
retries: 3
|
||||
timeout: 5s
|
||||
|
||||
pgadmin:
|
||||
depends_on:
|
||||
|
Loading…
Reference in New Issue
Block a user