Add Docker Compose for WebGL server
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user