Files
VFSUnity/Build/docker-compose.yml
T

22 lines
448 B
YAML
Raw Normal View History

2026-07-12 21:02:05 +08:00
services:
vfs:
2026-07-13 22:49:52 +08:00
image: node:22-alpine
2026-07-12 21:02:05 +08:00
container_name: vfs
working_dir: /app
2026-07-13 22:49:52 +08:00
command: node server.js
2026-07-12 21:02:05 +08:00
environment:
2026-07-13 22:49:52 +08:00
NODE_ENV: production
2026-07-12 21:02:05 +08:00
HOST: 0.0.0.0
PORT: 24710
ports:
- "24710:24710"
volumes:
2026-07-14 03:32:58 +08:00
- ./:/app
2026-07-12 21:02:05 +08:00
restart: unless-stopped
2026-07-13 22:49:52 +08:00
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:24710/"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s