Update ports used in health check to fix TLS handshake error (#3)

Part of [Create bridge channel in go-nitro](https://www.notion.so/Create-bridge-channel-in-go-nitro-22ce80a0d8ae4edb80020a8f250ea270)

Co-authored-by: Neeraj <neeraj.rtly@gmail.com>
Reviewed-on: #3
This commit is contained in:
nabarun 2024-07-30 10:40:45 +00:00
parent cdf675f666
commit 02d2267b36
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ services:
- 3006
- 4006
healthcheck:
test: ["CMD", "nc", "-vz", "localhost", "4006"]
test: ["CMD", "nc", "-vz", "localhost", "3006"]
interval: 30s
timeout: 5s
retries: 10

View File

@ -32,7 +32,7 @@ services:
- 3005
- 4005
healthcheck:
test: ["CMD", "nc", "-vz", "localhost", "4005"]
test: ["CMD", "nc", "-vz", "localhost", "3005"]
interval: 30s
timeout: 5s
retries: 10