Move compose file into WebGL build

This commit is contained in:
yangbear
2026-07-14 03:32:58 +08:00
parent 2ce29568ee
commit 5ca24ec3b8
+21
View File
@@ -0,0 +1,21 @@
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:
- ./:/app
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:24710/"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s