v0.1.43 - 플래너 라벨과 가이드 동작 정리

This commit is contained in:
2026-04-23 13:34:48 +09:00
parent 4a80721824
commit 44932f9724
16 changed files with 730 additions and 244 deletions

View File

@@ -2,16 +2,14 @@ services:
postgres:
image: postgres:16-alpine
container_name: ten-minute-postgres
environment:
POSTGRES_DB: ten_minute_planner
POSTGRES_USER: zenn
POSTGRES_PASSWORD: wps!vmffosj180204
env_file:
- ./.env
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- "45432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U zenn -d ten_minute_planner"]
test: ["CMD-SHELL", "pg_isready -U \"$${POSTGRES_USER}\" -d \"$${POSTGRES_DB}\""]
interval: 10s
timeout: 5s
retries: 10
@@ -21,9 +19,10 @@ services:
build:
context: ./backend
container_name: ten-minute-backend
env_file:
- ./.env
environment:
PORT: 3001
DATABASE_URL: postgresql://zenn:wps%21vmffosj180204@postgres:5432/ten_minute_planner
CORS_ORIGIN: http://localhost:48081
SESSION_TTL_DAYS: 30
depends_on:
@@ -46,4 +45,4 @@ services:
restart: unless-stopped
volumes:
postgres_data:
postgres_data: