version: '3' services: dictation_server: container_name: dictation_server_dev_container 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 test_mysql_db: image: mysql:8.0-bullseye environment: MYSQL_ROOT_PASSWORD: root_password MYSQL_DATABASE: odms MYSQL_USER: user MYSQL_PASSWORD: password networks: - external networks: external: name: omds_network external: true volumes: node_modules: