18 lines
364 B
YAML
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"
|