git: 원격 저장소 연결 및 초기 커밋

Made-with: Cursor
This commit is contained in:
2026-04-13 13:50:17 +09:00
commit 3286159154
38 changed files with 7830 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
services:
pocketbase:
image: ghcr.io/muchobien/pocketbase:latest
restart: unless-stopped
environment:
PB_HOST: 0.0.0.0
PB_PORT: 8090
ports:
- "8090:8090"
volumes:
- pocketbase_data:/pb_data
todo-web:
build:
context: .
args:
VITE_POCKETBASE_URL: ${VITE_POCKETBASE_URL:-http://127.0.0.1:8090}
restart: unless-stopped
ports:
- "8080:80"
depends_on:
- pocketbase
volumes:
pocketbase_data: