22 lines
448 B
YAML
22 lines
448 B
YAML
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
|