mirror of
https://github.com/sammwyy/MikuMikuBeam.git
synced 2025-06-29 18:21:13 +00:00
15 lines
236 B
YAML
15 lines
236 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/app
|
|
environment:
|
|
- NODE_ENV=development
|
|
command: npm run start
|