Skip to content

Commit

Permalink
Merge pull request #95 from ably/update_docker_images
Browse files Browse the repository at this point in the history
Update docker images in docker-compose files
  • Loading branch information
ikbalkaya authored Nov 8, 2022
2 parents 3ac45c1 + 7fd06e2 commit 769a6c8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
14 changes: 10 additions & 4 deletions docker-compose-distributed.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
zookeeper:
image: confluentinc/cp-zookeeper:5.4.0
image: confluentinc/cp-zookeeper:5.4.10-1-ubi8
networks:
kafka_distributed_network:
environment:
Expand All @@ -11,7 +11,9 @@ services:
# - '2181:2181'

kafka:
image: confluentinc/cp-enterprise-kafka:5.4.0
image: confluentinc/cp-server:5.4.10-1-ubi8
hostname: kafka
container_name: kafka
networks:
kafka_distributed_network:
aliases:
Expand All @@ -20,6 +22,10 @@ services:
- 29092:29092
depends_on:
- zookeeper
volumes:
- ./scripts/security/keypair:/tmp/conf
- ./scripts/helper:/tmp/helper
- ./scripts/security:/etc/kafka/secrets
environment:
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
Expand All @@ -31,7 +37,7 @@ services:
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT

schema-registry:
image: confluentinc/cp-schema-registry:5.4.0
image: confluentinc/cp-schema-registry:5.4.10-1-ubi8
networks:
kafka_distributed_network:
aliases:
Expand All @@ -43,7 +49,7 @@ services:
SCHEMA_REGISTRY_HOST_NAME: schema-registry

control-center:
image: confluentinc/cp-enterprise-control-center:5.4.0
image: confluentinc/cp-enterprise-control-center:5.4.10-1-ubi8
networks:
kafka_distributed_network:
aliases:
Expand Down
14 changes: 10 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
zookeeper:
image: confluentinc/cp-zookeeper:5.4.0
image: confluentinc/cp-zookeeper:5.4.10-1-ubi8
networks:
kafka_network:
environment:
Expand All @@ -11,7 +11,9 @@ services:
# - '2181:2181'

kafka:
image: confluentinc/cp-enterprise-kafka:5.4.0
image: confluentinc/cp-server:5.4.10-1-ubi8
hostname: kafka
container_name: kafka
networks:
kafka_network:
aliases:
Expand All @@ -20,6 +22,10 @@ services:
- 29092:29092
depends_on:
- zookeeper
volumes:
- ./scripts/security/keypair:/tmp/conf
- ./scripts/helper:/tmp/helper
- ./scripts/security:/etc/kafka/secrets
environment:
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
Expand All @@ -31,7 +37,7 @@ services:
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT

schema-registry:
image: confluentinc/cp-schema-registry:5.4.0
image: confluentinc/cp-schema-registry:5.4.10-1-ubi8
networks:
kafka_network:
aliases:
Expand All @@ -43,7 +49,7 @@ services:
SCHEMA_REGISTRY_HOST_NAME: schema-registry

control-center:
image: confluentinc/cp-enterprise-control-center:5.4.0
image: confluentinc/cp-enterprise-control-center:5.4.10-1-ubi8
networks:
kafka_network:
aliases:
Expand Down

0 comments on commit 769a6c8

Please sign in to comment.