19 lines
486 B
YAML
19 lines
486 B
YAML
version: '3'
|
|
|
|
services:
|
|
dictation_auto_transcription_file_server:
|
|
container_name: dictation_auto_transcription_file_server_dev_container
|
|
env_file: ../.env
|
|
build: .
|
|
working_dir: /app/dictation_auto_transcription_file_server
|
|
ports:
|
|
- '8083:8083'
|
|
volumes:
|
|
- ../../:/app
|
|
- node_modules:/app/dictation_auto_transcription_file_server/node_modules
|
|
expose:
|
|
- '8083'
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true
|
|
volumes:
|
|
node_modules: |