This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
werefox-dev/docker-compose.yml
2021-04-18 02:38:19 +00:00

13 lines
220 B
YAML

---
version: "3"
services:
node:
image: next-js:latest
container_name: node
build: .
volumes:
- ./src:/usr/src/app/
ports:
- "3444:3444"
command: bash -c "cd info && npm run $MODE"