-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Updated Docker example and documentation
- Loading branch information
Julien Ruaux
committed
Jul 14, 2022
1 parent
dc9a739
commit e065f7d
Showing
5 changed files
with
57 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG CP_VERSION=7.2.0 | ||
ARG BASE_PREFIX=confluentinc | ||
ARG CONNECT_IMAGE=cp-server-connect | ||
|
||
FROM $BASE_PREFIX/$CONNECT_IMAGE:$CP_VERSION | ||
|
||
ENV CONNECT_PLUGIN_PATH="/usr/share/java,/usr/share/confluent-hub-components" | ||
|
||
RUN confluent-hub install --no-prompt confluentinc/kafka-connect-datagen:0.5.3 | ||
|
||
COPY target/components/packages/redis-enterprise-kafka.zip /tmp/redis-enterprise-kafka.zip | ||
|
||
RUN confluent-hub install --no-prompt /tmp/redis-enterprise-kafka.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters