Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ jobs:

# nginx.conf 적용
sudo cp /home/ubuntu/app/nginx/nginx.conf /etc/nginx/nginx.conf

# 기존 컨테이너 강제 종료 및 정리
docker-compose down -v --remove-orphans
docker rm -f my-mysql || true
docker rm -f spring-app || true
docker rm -f my-nginx || true
docker image prune -af

# 새로운 컨테이너 실행
docker-compose up -d