[タスク 1176: 開発環境コンテナの構築(Client/Server)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/OMDSDictation/_workitems/edit/1176) 開発用コンテナを構築しました。以下のコンテナを追加しています。 - ライセンス管理 - server - client - ディクテーション管理 - server - client - DB(MySQL) - Cache(Redis)
23 lines
415 B
YAML
23 lines
415 B
YAML
version: "3"
|
|
|
|
services:
|
|
dictation_client:
|
|
env_file: ../.env
|
|
build: .
|
|
working_dir: /app/dictation_client
|
|
ports:
|
|
- "3001:3001"
|
|
- "6007:6007"
|
|
volumes:
|
|
- ../../:/app
|
|
- node_modules:/app/dictation_client/node_modules
|
|
expose:
|
|
- "3001"
|
|
- "6007"
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|
|
|
|
# Data Volume として永続化する
|
|
volumes:
|
|
node_modules:
|