werefox-cafe/docker-compose.yml

14 lines
248 B
YAML
Raw Normal View History

2021-04-07 15:46:55 -05:00
---
version: "3"
services:
"info-werefox-cafe":
image: node:alpine
2021-04-17 21:38:19 -05:00
volumes:
- ./src:/usr/src/app/
ports:
- "3444:3444"
user: "1000:1000"
working_dir: "/usr/src/app"
2024-02-26 19:15:40 -06:00
command: 'sh -c "cd info && npm run start"'