werefox-cafe/docker-compose.yml

14 lines
236 B
YAML
Raw Normal View History

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