werefox-cafe/docker-compose.yml

14 lines
248 B
YAML

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