v0.1.41 - 배포 설정과 계정 화면 정리 반영

This commit is contained in:
2026-04-22 18:39:05 +09:00
parent 8f96c22c6d
commit 403d0a0c5a
5 changed files with 17 additions and 15 deletions

View File

@@ -4,14 +4,14 @@ services:
container_name: ten-minute-postgres
environment:
POSTGRES_DB: ten_minute_planner
POSTGRES_USER: planner
POSTGRES_PASSWORD: planner1234
POSTGRES_USER: zenn
POSTGRES_PASSWORD: wps!vmffosj180204
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- "5432:5432"
- "45432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U planner -d ten_minute_planner"]
test: ["CMD-SHELL", "pg_isready -U zenn -d ten_minute_planner"]
interval: 10s
timeout: 5s
retries: 10
@@ -23,8 +23,8 @@ services:
container_name: ten-minute-backend
environment:
PORT: 3001
DATABASE_URL: postgresql://planner:planner1234@postgres:5432/ten_minute_planner
CORS_ORIGIN: http://localhost:8080
DATABASE_URL: postgresql://zenn:wps%21vmffosj180204@postgres:5432/ten_minute_planner
CORS_ORIGIN: http://localhost:48081
SESSION_TTL_DAYS: 30
depends_on:
postgres:
@@ -42,8 +42,8 @@ services:
depends_on:
- backend
ports:
- "8080:80"
- "48081:80"
restart: unless-stopped
volumes:
postgres_data:
postgres_data: