You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docker image is available on [Docker Hub](https://hub.docker.com/r/pardhu1212/kafka-ssl)
4
+
5
+
Run this command to pull the image: **`docker pull pardhu1212/kafka-ssl`**
6
+
2
7
# Kafka broker with SSL enabled using Docker
3
8
-[Table of Contents](#kafka-broker-with-ssl-enabled-using-docker)
4
9
*[Quickstart](#quickstart)
@@ -23,17 +28,21 @@
23
28
| KEY_STORE | /kafka_2.12-2.5.0/ssl/server.keystore.jks | LOW | Keystore jks file path to be used inside docker container. |
24
29
25
30
26
-
Example: `docker run --net=host --init -d --name=kafkassl -e PASSWORD=abc123def kafka-ssl-image`
31
+
Example of setting environment variable `PASSWORD`:
32
+
```
33
+
docker run --net=host --init -d --name=kafkassl -e PASSWORD=abc123def pardhu1212/kafka-ssl
34
+
```
27
35
28
36
29
37
### Purpose
30
38
- The primary purpose of the project is to create a kafka container with SSL enabled.
31
-
- The secondary goal of the project is to learn various docker commands and an important supervisor process called **runit**
39
+
- The secondary goal of the project is to learn various docker commands and an important supervisor process called **runit**. Details will be explained in the further sections.
0 commit comments