Files
ScriptVPS/vps-monitor/docker-compose.yml
jeanotx32 2a46fcd13a
All checks were successful
Build and Push Docker Images / docker (push) Successful in 28s
Feat: add VPS export functionality and import JSON feature in UI
2026-06-02 19:23:54 -04:00

22 lines
473 B
YAML

services:
AppliSurveillance-api:
image: git.jeanbonapp.com/jeanbon/vps-monitor-backend:latest
hostname: backend
ports:
- "8020:8000"
volumes:
- ./data:/app/data
env_file:
- path: ./.env
required: false
restart: unless-stopped
AppliSurveillance-ui:
image: git.jeanbonapp.com/jeanbon/vps-monitor-frontend:latest
ports:
- "3020:80"
depends_on:
- AppliSurveillance-api
restart: unless-stopped