최초 배포

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

25
docker-compose-dev.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
backend:
build: ./backend
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
- ./backend/data:/app/data
ports:
- "8001:8001"
frontend:
build: ./frontend
container_name: snstatus-frontend
restart: always
ports:
- "3005:80"
depends_on:
- backend