werefox-cafe/docker-compose.yml

14 lines
248 B
YAML
Raw Permalink Normal View History

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