2023-08-28 17:00:35 +08:00
|
|
|
|
version: "3.1"
|
2023-08-27 14:37:59 +08:00
|
|
|
|
services:
|
|
|
|
|
nats:
|
|
|
|
|
image: nats
|
|
|
|
|
container_name: tavi-nats
|
|
|
|
|
restart: always
|
|
|
|
|
command: -m 5000
|
|
|
|
|
ports:
|
|
|
|
|
- "4222:4222"
|
|
|
|
|
- "6222:6222"
|
|
|
|
|
- "8222:8222"
|
|
|
|
|
|
2023-09-08 14:15:06 +08:00
|
|
|
|
mongodb:
|
|
|
|
|
image: mongo:5.0
|
|
|
|
|
container_name: tavi-mongo
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "27017:27017"
|
|
|
|
|
environment:
|
|
|
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
|
|
|
MONGO_INITDB_ROOT_PASSWORD: root
|
|
|
|
|
MONGO_INITDB_DATABASE: tavi
|
|
|
|
|
volumes:
|
|
|
|
|
- ./init.mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
|
|
|
|
|
|
2023-08-27 14:37:59 +08:00
|
|
|
|
mysql:
|
|
|
|
|
image: mysql:5.7
|
|
|
|
|
container_name: tavi-mysql
|
|
|
|
|
restart: always
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_ROOT_PASSWORD: root
|
|
|
|
|
ports:
|
|
|
|
|
- "3306:3306"
|
2023-09-07 13:12:13 +08:00
|
|
|
|
volumes:
|
2023-09-08 14:15:06 +08:00
|
|
|
|
- ./init.mysql.sql:/docker-entrypoint-initdb.d/init.mysql.sql
|
2023-08-27 14:37:59 +08:00
|
|
|
|
|
|
|
|
|
nacos:
|
|
|
|
|
image: nacos/nacos-server
|
|
|
|
|
container_name: tavi-nacos
|
|
|
|
|
restart: always
|
|
|
|
|
environment:
|
|
|
|
|
MODE: standalone
|
|
|
|
|
ports:
|
|
|
|
|
- "8848:8848"
|
|
|
|
|
|
|
|
|
|
redis:
|
|
|
|
|
image: redis:alpine
|
|
|
|
|
container_name: tavi-redis
|
|
|
|
|
restart: always
|
|
|
|
|
environment:
|
|
|
|
|
TZ: Asia/Shanghai
|
|
|
|
|
command: --requirepass redis
|
|
|
|
|
ports:
|
|
|
|
|
- "6379:6379"
|
|
|
|
|
|
|
|
|
|
postgres:
|
|
|
|
|
image: postgres:13.1
|
|
|
|
|
container_name: tavi-postgres
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "5432:5432"
|
|
|
|
|
volumes:
|
2023-08-28 17:00:35 +08:00
|
|
|
|
# postgrel->data 挂载出来,如果出现docker报错清空 page_data/data以及/orthanc_db文件夹
|
2023-08-27 14:37:59 +08:00
|
|
|
|
- ./orthancOHIF/pg_data/data:/var/lib/postgresql/data
|
2023-08-28 17:00:35 +08:00
|
|
|
|
- ./orthancOHIF/orthanc.sql:/docker-entrypoint-initdb.d/orthanc.sql
|
2023-08-27 14:37:59 +08:00
|
|
|
|
environment:
|
|
|
|
|
- POSTGRES_USER=orthanc
|
|
|
|
|
- POSTGRES_PASSWORD=orthanc
|
2023-08-28 17:00:35 +08:00
|
|
|
|
- POSTGRES_DB=postgres
|
2023-08-27 14:37:59 +08:00
|
|
|
|
|
|
|
|
|
pacs:
|
|
|
|
|
image: osimis/orthanc:20.11.2
|
|
|
|
|
container_name: tavi-orthanc
|
|
|
|
|
depends_on:
|
|
|
|
|
- postgres
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "8042:8042"
|
|
|
|
|
- "4242:4242"
|
|
|
|
|
volumes:
|
|
|
|
|
# 挂载orthanc.json配置
|
|
|
|
|
- ./orthancOHIF/config/orthanc.json:/etc/orthanc/orthanc.json:ro
|
|
|
|
|
# 不使用 postgre 存储 dicom,挂载出来到 ${ORTHANC_DB_MNT},更健康
|
|
|
|
|
- ./orthancOHIF/orthanc_db:/var/lib/orthanc/db
|
|
|
|
|
environment:
|
|
|
|
|
- DICOM_WEB_PLUGIN_ENABLED=true
|
|
|
|
|
- POSTGRESQL_PLUGIN_ENABLED=true
|
|
|
|
|
- TZ=Asia/Shanghai
|
|
|
|
|
command: /etc/orthanc/orthanc.json
|
|
|
|
|
|
|
|
|
|
ohifv3:
|
|
|
|
|
image: ohif/viewer
|
|
|
|
|
container_name: tavi-ohif
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "3000:80"
|
|
|
|
|
environment:
|
|
|
|
|
- APP_CONFIG:/usr/share/nginx/html/app-config.js
|
|
|
|
|
volumes:
|
|
|
|
|
- ./orthancOHIF/ohifv3/ohif.conf:/etc/nginx/conf.d/default.conf:ro
|
|
|
|
|
- ./orthancOHIF/ohifv3/app-config.js:/usr/share/nginx/html/app-config.js:ro
|
|
|
|
|
- ./orthancOHIF/ohifv3/logo.png:/usr/share/nginx/html/logo.png:ro
|
|
|
|
|
depends_on:
|
|
|
|
|
- pacs
|