Skip to content

Commit 534475c

Browse files
committed
[DOP-25470] Change internal docker ports
1 parent 031cf56 commit 534475c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,13 @@ services:
119119

120120
consumer:
121121
image: mtsrus/data-rentgen:${VERSION:-latest}
122-
command: python -m data_rentgen.consumer --host 0.0.0.0 --port 8001
122+
command: python -m data_rentgen.consumer --host 0.0.0.0 --port 8000
123123
restart: unless-stopped
124124
env_file: .env.docker
125125
ports:
126-
- 8001:8001
126+
- 8001:8000
127127
healthcheck:
128-
test: [CMD-SHELL, curl -f http://localhost:8001/monitoring/ping]
128+
test: [CMD-SHELL, curl -f http://localhost:8000/monitoring/ping]
129129
interval: 30s
130130
timeout: 5s
131131
retries: 3
@@ -154,13 +154,13 @@ services:
154154

155155
http2kafka:
156156
image: mtsrus/data-rentgen:${VERSION:-latest}
157-
command: python -m data_rentgen.http2kafka --host 0.0.0.0 --port 8002
157+
command: python -m data_rentgen.http2kafka --host 0.0.0.0 --port 8000
158158
restart: unless-stopped
159159
env_file: .env.docker
160160
ports:
161-
- 8002:8002
161+
- 8002:8000
162162
healthcheck:
163-
test: [CMD-SHELL, curl -f http://localhost:8002/monitoring/ping]
163+
test: [CMD-SHELL, curl -f http://localhost:8000/monitoring/ping]
164164
interval: 30s
165165
timeout: 5s
166166
retries: 3

0 commit comments

Comments
 (0)