최초 배포

This commit is contained in:
2026-01-27 16:55:03 +09:00
commit 6ebf8e8df7
76 changed files with 5990 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
services:
backend:
image: sa8001/snstatus-backend:v0.1.5
container_name: snstatus-backend
restart: always
environment:
- NODE_ENV=production
privileged: true
volumes:
- /:/host:ro
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
ports:
- "8001:8001"
frontend:
image: sa8001/snstatus-frontend:v0.1.5
container_name: snstatus-frontend
restart: always
ports:
- "3005:80"
depends_on:
- backend