Initial commit

This commit is contained in:
kihong.kim
2026-01-24 19:41:19 +09:00
commit 807df3d678
90 changed files with 6411 additions and 0 deletions

27
docker-compose.yml Normal file
View File

@@ -0,0 +1,27 @@
version: "3.9"
services:
backend:
build:
context: ./backend
ports:
- "4000:4000"
environment:
PORT: "4000"
MONGODB_URI: "mongodb://mongo:27017/google-tv-dashboard"
env_file:
- ./backend/.env
depends_on:
- mongo
restart: unless-stopped
mongo:
image: mongo:7
ports:
- "27017:27017"
volumes:
- mongo-data:/data/db
restart: unless-stopped
volumes:
mongo-data: