Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 블루 그린 무중단을 위한 도커 컴포즈 파일 변경 #791

Merged
merged 2 commits into from
Oct 15, 2024
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
4 changes: 2 additions & 2 deletions backend/be_app-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: ${DOCKER_REPO_NAME}/springboot-app:test-latest
platform: linux/arm64
ports:
- ${BLUE_SERVER_BINDING_PORT}
- "${BLUE_SERVER_BINDING_PORT}:8080"
volumes:
- ${SERVER_LOGS_PATH}/springboot-app/blue:/logs
- ${SERVER_LOGS_PATH}/springboot-app/backup/blue:/logs/backup
Expand All @@ -31,7 +31,7 @@ services:
image: ${DOCKER_REPO_NAME}/springboot-app:test-latest
platform: linux/arm64
ports:
- ${GREEN_SERVER_BINDING_PORT}
- "${GREEN_SERVER_BINDING_PORT}:8080"
volumes:
- ${SERVER_LOGS_PATH}/springboot-app/green:/logs
- ${SERVER_LOGS_PATH}/springboot-app/backup/green:/logs/backup
Expand Down
Loading