Skip to content

Commit

Permalink
Fix confluent-schema-registry container and host name
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Dec 20, 2024
1 parent 38d2d1c commit a5a9f97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,17 @@ services:
- "26257:26257"
- "8080:8080"
confluent-schema-registry:
container_name: schema-registry
container_name: confluent-schema-registry
depends_on:
kafka-server:
condition: service_healthy
env_file: data/confluent-schema-registry/env/docker.env
healthcheck:
interval: 10s
retries: 5
test: nc -z schema-registry 8081
test: nc -z confluent-schema-registry 8081
timeout: 5s
hostname: schema-registry
hostname: confluent-schema-registry
image: confluentinc/cp-schema-registry:${CONFLUENT_SCHEMA_REGISTRY_VERSION:-7.4.0}
ports:
- "8081:8081"
Expand Down

0 comments on commit a5a9f97

Please sign in to comment.