File size: 461 Bytes
6380833 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Optional host port exposure for local debugging.
# CI only needs the app/service ports declared in docker-compose.yaml.
services:
kafka:
ports:
- "127.0.0.1:49092:29092"
clickhouse:
ports:
- "127.0.0.1:48123:8123"
- "127.0.0.1:49000:9000"
- "127.0.0.1:49009:9009"
redis:
ports:
- "127.0.0.1:46379:6379"
postgres:
ports:
- "127.0.0.1:45432:5432"
svix:
ports:
- "127.0.0.1:48071:8071"
|