Files
courses/bsawf/20-internationalization-i18n/docker-compose.override.example.yml
T
2025-05-20 11:57:43 -04:00

18 lines
364 B
YAML

version: "3.4"
services:
webpack:
build:
context: "."
target: "webpack"
args:
- "NODE_ENV=${NODE_ENV:-production}"
command: "yarn run watch"
env_file:
- ".env"
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
stop_grace_period: "${DOCKER_STOP_GRACE_PERIOD:-3s}"
tty: true
volumes:
- ".:/app"