Feat: add VPS export functionality and import JSON feature in UI
All checks were successful
Build and Push Docker Images / docker (push) Successful in 28s

This commit is contained in:
jeanotx32
2026-06-02 19:23:54 -04:00
parent f2e5a24b37
commit 2a46fcd13a
7 changed files with 187 additions and 56 deletions

View File

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