Files
VFSUnity/docker-compose.yml
T
2026-07-12 21:02:05 +08:00

15 lines
285 B
YAML

services:
vfs:
image: node:25-alpine
container_name: vfs
working_dir: /app
command: sh -c "npm install && npm start"
environment:
HOST: 0.0.0.0
PORT: 24710
ports:
- "24710:24710"
volumes:
- ./Build:/app
restart: unless-stopped