[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
25 lines
435 B
YAML
25 lines
435 B
YAML
version: '3'
|
|
|
|
services:
|
|
dictation_server:
|
|
env_file: ../.env
|
|
build: .
|
|
working_dir: /app/dictation_server
|
|
ports:
|
|
- '8081:8081'
|
|
volumes:
|
|
- ../../:/app
|
|
- node_modules:/app/dictation_server/node_modules
|
|
expose:
|
|
- '8081'
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|
|
networks:
|
|
- external
|
|
networks:
|
|
external:
|
|
name: omds_network
|
|
external: true
|
|
volumes:
|
|
node_modules:
|