DB 서비스 이름을 postgres에서 db로 변경
Deploy / deploy (push) Successful in 20s

- depends_on, DB_HOST 기본값도 db로 갱신
- deploy: 서비스 이름 변경으로 남는 orphan 컨테이너 정리를 위해 --remove-orphans 추가

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-19 18:15:38 +09:00
parent f3e97d6c44
commit 67f5d815c9
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ jobs:
- name: Restart containers
run: |
cd "$DEPLOY_DIR"
docker compose up -d
docker compose up -d --remove-orphans
# backend/frontend는 항상 새로 기동: DB 교체 시 스키마 재동기화,
# nginx의 낡은 upstream IP 캐시 방지
docker compose up -d --no-deps --force-recreate backend frontend