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

[BE] 프록시 서버 https 옵션 수정 #84

Merged
merged 10 commits into from
Nov 14, 2024
Prev Previous commit
Next Next commit
fix: 네트워크 설정
sjy2335 committed Nov 14, 2024
commit 49529e5fd69d75e1723799fdd1df8579e03d4145
10 changes: 10 additions & 0 deletions backend/console-server/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -11,6 +11,8 @@ services:
depends_on:
- server-blue
- server-green
networks:
- app-network

server-blue:
image: ghcr.io/boostcampwm-2024/web35-watchducks/backend/console-server:latest
@@ -26,6 +28,8 @@ services:
interval: 10s
timeout: 2s
retries: 5
networks:
- app-network

server-green:
image: ghcr.io/boostcampwm-2024/web35-watchducks/backend/console-server:latest
@@ -41,3 +45,9 @@ services:
interval: 10s
timeout: 2s
retries: 5
networks:
- app-network

networks:
app-network:
driver: bridge