werefox-cafe/docker-compose.yml

14 lines
249 B
YAML

---
version: "3"
services:
"werefox-dev":
image: node:alpine
volumes:
- ./src:/usr/src/app/
ports:
- "3444:3444"
user: "1000:1000"
working_dir: "/usr/src/app"
command: 'sh -c "cd $APP_FOLDER && npm run $MODE"'