syntax
This commit is contained in:
parent
f3534cd8b0
commit
57b9ede73b
@ -4,19 +4,19 @@ services:
|
|||||||
container_name: postgres
|
container_name: postgres
|
||||||
profiles: [main, extra]
|
profiles: [main, extra]
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- "5432:5432"
|
||||||
networks:
|
networks:
|
||||||
pacs:
|
pacs:
|
||||||
aliases:
|
aliases:
|
||||||
- postgres
|
- postgres
|
||||||
environment:
|
environment:
|
||||||
- PGPASSWORD=${PGPASSWORD}
|
PGPASSWORD: ${PGPASSWORD}
|
||||||
- POSTGRES_USER=${POSTGRES_USER}
|
POSTGRES_USER: ${POSTGRES_USER}
|
||||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
- POSTGRES_DB=${POSTGRES_DB}
|
POSTGRES_DB: ${POSTGRES_DB}
|
||||||
- PGDATA=${PGDATA}
|
PGDATA: ${PGDATA}
|
||||||
- PGTZ=${PGTZ}
|
PGTZ: ${PGTZ}
|
||||||
- POSTGRES_HOST_AUTH_METHOD="trust"
|
POSTGRES_HOST_AUTH_METHOD: "trust"
|
||||||
volumes:
|
volumes:
|
||||||
- ${POSTGRES_DATA_MNT}:${PGDATA}:Z
|
- ${POSTGRES_DATA_MNT}:${PGDATA}:Z
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@ -32,8 +32,8 @@ services:
|
|||||||
profiles: [main, extra]
|
profiles: [main, extra]
|
||||||
image: orthancteam/orthanc
|
image: orthancteam/orthanc
|
||||||
ports:
|
ports:
|
||||||
- 8042:8042
|
- "8042:8042"
|
||||||
- 4242:4242
|
- "4242:4242"
|
||||||
volumes:
|
volumes:
|
||||||
- ${ORTHANC_CONFIG:-./config/orthanc}:/etc/orthanc/:ro
|
- ${ORTHANC_CONFIG:-./config/orthanc}:/etc/orthanc/:ro
|
||||||
- ${ORTHANC_DB_MNT:-./volumes/orthanc_db}:/var/lib/orthanc/db:Z
|
- ${ORTHANC_DB_MNT:-./volumes/orthanc_db}:/var/lib/orthanc/db:Z
|
||||||
@ -57,9 +57,9 @@ services:
|
|||||||
profiles: [main, extra]
|
profiles: [main, extra]
|
||||||
image: ohif/app:v3.9.2
|
image: ohif/app:v3.9.2
|
||||||
ports:
|
ports:
|
||||||
- 3000:80
|
- "3000:80"
|
||||||
environment:
|
environment:
|
||||||
- APP_CONFIG=/usr/share/nginx/html/app-config.js
|
APP_CONFIG: /usr/share/nginx/html/app-config.js
|
||||||
volumes:
|
volumes:
|
||||||
- ${NGINX_DEFAULT_CONF}:/etc/nginx/conf.d/default.conf:ro
|
- ${NGINX_DEFAULT_CONF}:/etc/nginx/conf.d/default.conf:ro
|
||||||
- ${NGINX_OHIF_CONF}:/etc/nginx/enabled-sites/ohif.conf:ro
|
- ${NGINX_OHIF_CONF}:/etc/nginx/enabled-sites/ohif.conf:ro
|
||||||
@ -96,8 +96,10 @@ services:
|
|||||||
profiles: [extra]
|
profiles: [extra]
|
||||||
image: salimkanoun/orthanctoolsjs
|
image: salimkanoun/orthanctoolsjs
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports: [ "4000:4000" ]
|
ports:
|
||||||
volumes: [ "${ORTHANC_TOOLS_MNT:-./volumes/orthanc_tools}:/OrthancToolsJs/data" ]
|
- "4000:4000"
|
||||||
|
volumes:
|
||||||
|
- ${ORTHANC_TOOLS_MNT:-./volumes/orthanc_tools}:/OrthancToolsJs/data
|
||||||
environment:
|
environment:
|
||||||
TZ: "${TZ}"
|
TZ: "${TZ}"
|
||||||
ORTHANC_ADDRESS: "http://orthanc"
|
ORTHANC_ADDRESS: "http://orthanc"
|
||||||
@ -137,12 +139,12 @@ services:
|
|||||||
image: dpage/pgadmin4:latest
|
image: dpage/pgadmin4:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- PGADMIN_DEFAULT_EMAIL=${PGADMIN_MAIL}
|
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_MAIL}
|
||||||
- PGADMIN_DEFAULT_PASSWORD=${PGADMIN_PASS}
|
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_PASS}
|
||||||
- PGADMIN_CONFIG_SERVER_MODE=${PGADMIN_SERVER}
|
PGADMIN_CONFIG_SERVER_MODE: ${PGADMIN_SERVER}
|
||||||
- PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED=${PGADMIN_MASTER_PASS}
|
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: ${PGADMIN_MASTER_PASS}
|
||||||
ports:
|
ports:
|
||||||
- 5050:5050
|
- "5050:5050"
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
Reference in New Issue
Block a user