werefox-cafe/docker-compose.yml

14 lines
236 B
YAML
Raw Normal View History

2021-04-07 20:46:55 +00:00
---
version: "3"
services:
"werefox-dev":
2021-04-18 02:38:19 +00:00
image: next-js:latest
container_name: werefox-dev
2021-04-18 02:38:19 +00:00
build: .
volumes:
- ./src:/usr/src/app/
ports:
- "3444:3444"
command: bash -c "cd info && npm run $MODE"