Skip to content

Commit

Permalink
uniform container name (#102)
Browse files Browse the repository at this point in the history
* uniform container name

* fixes
  • Loading branch information
simplesteph authored Jan 7, 2022
1 parent 767be3d commit f7b97bf
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 1 deletion.
6 changes: 6 additions & 0 deletions full-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
kafka1:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka1
container_name: kafka1
ports:
- "9092:9092"
- "9999:9999"
Expand All @@ -36,6 +37,7 @@ services:
kafka-schema-registry:
image: confluentinc/cp-schema-registry:6.2.1
hostname: kafka-schema-registry
container_name: kafka-schema-registry
ports:
- "8081:8081"
environment:
Expand All @@ -50,6 +52,7 @@ services:
kafka-rest-proxy:
image: confluentinc/cp-kafka-rest:6.2.1
hostname: kafka-rest-proxy
container_name: kafka-rest-proxy
ports:
- "8082:8082"
environment:
Expand All @@ -67,6 +70,7 @@ services:
kafka-connect:
image: confluentinc/cp-kafka-connect:6.2.1
hostname: kafka-connect
container_name: kafka-connect
ports:
- "8083:8083"
environment:
Expand Down Expand Up @@ -108,6 +112,7 @@ services:
ksqldb-server:
image: confluentinc/cp-ksqldb-server:6.2.1
hostname: ksqldb-server
container_name: ksqldb-server
ports:
- "8088:8088"
environment:
Expand All @@ -120,6 +125,7 @@ services:

zoonavigator:
image: elkozmon/zoonavigator:0.8.0
container_name: zoonavigator
ports:
- "8004:8000"
environment:
Expand Down
4 changes: 4 additions & 0 deletions zk-multiple-kafka-multiple-schema-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ services:
kafka1:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka1
container_name: kafka1
ports:
- "9092:9092"
environment:
Expand All @@ -55,6 +56,7 @@ services:
kafka2:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka2
container_name: kafka2
ports:
- "9093:9093"
environment:
Expand All @@ -72,6 +74,7 @@ services:
kafka3:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka3
container_name: kafka3
ports:
- "9094:9094"
environment:
Expand All @@ -89,6 +92,7 @@ services:
kafka-schema-registry:
image: confluentinc/cp-schema-registry:6.2.1
hostname: kafka-schema-registry
container_name: kafka-schema-registry
depends_on:
- zoo1
- zoo2
Expand Down
3 changes: 3 additions & 0 deletions zk-multiple-kafka-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ services:
kafka1:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka1
container_name: kafka1
ports:
- "9092:9092"
environment:
Expand All @@ -56,6 +57,7 @@ services:
kafka2:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka2
container_name: kafka2
ports:
- "9093:9093"
environment:
Expand All @@ -73,6 +75,7 @@ services:
kafka3:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka3
container_name: kafka3
ports:
- "9094:9094"
environment:
Expand Down
1 change: 1 addition & 0 deletions zk-multiple-kafka-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ services:
kafka1:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka1
container_name: kafka1
ports:
- "9092:9092"
- "9999:9999"
Expand Down
3 changes: 3 additions & 0 deletions zk-single-kafka-multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ services:
kafka1:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka1
container_name: kafka1
ports:
- "9092:9092"
environment:
Expand All @@ -31,6 +32,7 @@ services:
kafka2:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka2
container_name: kafka2
ports:
- "9093:9093"
environment:
Expand All @@ -47,6 +49,7 @@ services:
kafka3:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka3
container_name: kafka3
ports:
- "9094:9094"
environment:
Expand Down
2 changes: 1 addition & 1 deletion zk-single-kafka-single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
kafka1:
image: confluentinc/cp-kafka:6.2.1
hostname: kafka1
user: "appuser:appuser"
container_name: kafka1
ports:
- "9092:9092"
- "9999:9999"
Expand Down

0 comments on commit f7b97bf

Please sign in to comment.