Move compose file into WebGL build
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user