Files
VFSUnity/docker-compose.yml
T
2026-07-13 22:49:52 +08:00

22 lines
453 B
YAML

services:
vfs:
image: node:22-alpine
container_name: vfs
working_dir: /app
command: node server.js
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 24710
ports:
- "24710:24710"
volumes:
- ./Build:/app
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:24710/"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s