Add Docker Compose for WebGL server

This commit is contained in:
yangbear
2026-07-12 21:02:05 +08:00
parent bd2046215e
commit ccb3beb660
+14
View File
@@ -0,0 +1,14 @@
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