discord_read_bot/docker-compose.override.yml

20 lines
371 B
YAML
Raw Permalink Normal View History

services:
bot:
build:
args:
NODE_ENV: development
env_file:
- config/development.env
environment:
- NODE_ENV=development
volumes:
- .:/app
- /app/node_modules
command: ["npm", "run", "dev"]
depends_on:
- voicevox
voicevox:
image: voicevox/voicevox_engine:latest
ports:
- "50021:50021"