monorepo-microservice-rbac/docker-compose.yml
2023-08-27 14:37:59 +08:00

92 lines
2.1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: '3.1'
services:
nats:
image: nats
container_name: tavi-nats
restart: always
command: -m 5000
ports:
- "4222:4222"
- "6222:6222"
- "8222:8222"
mysql:
image: mysql:5.7
container_name: tavi-mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
ports:
- "3306:3306"
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:
# postgrel->data 挂载出来
- ./orthancOHIF/pg_data/data:/var/lib/postgresql/data
environment:
- PGDATA=/var/lib/postgresql/data
- POSTGRES_DB=tavi-orthanc
- POSTGRES_USER=orthanc
- POSTGRES_PASSWORD=orthanc
- TZ=Asia/Shanghai
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