-
Notifications
You must be signed in to change notification settings - Fork 4
/
lab.Dockerfile
57 lines (53 loc) · 3.79 KB
/
lab.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#------------------------------------------------------------------------------
# Copyright 2019 Robert Cowart
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#------------------------------------------------------------------------------
FROM confluentinc/cp-kafka-connect-base:6.0.0
ARG BUILD_DATE
LABEL org.opencontainers.image.created="$BUILD_DATE" \
org.opencontainers.image.authors="elastiflow@gmail.com" \
org.opencontainers.image.url="https://hub.docker.com/r/robcowart/cp-kafka-connect-custom" \
org.opencontainers.image.documentation="https://github.com/robcowart/cp-kafka-connect-custom/README.md" \
org.opencontainers.image.source="https://github.com/robcowart/cp-kafka-connect-custom" \
org.opencontainers.image.version="6.0.0_1.0.3_lab" \
org.opencontainers.image.vendor="Robert Cowart" \
org.opencontainers.image.title="cp-kafka-connect-custom" \
org.opencontainers.image.description="A custom Confluent Platform Kafka Connect container with additional connectors from Confluent Hub."
RUN confluent-hub install --no-prompt confluentinc/connect-transforms:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-avro-converter:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-elasticsearch:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-s3:latest && \
confluent-hub install --no-prompt blueapron/kafka-connect-protobuf-converter:latest && \
confluent-hub install --no-prompt debezium/debezium-connector-mongodb:latest && \
confluent-hub install --no-prompt debezium/debezium-connector-mysql:latest && \
confluent-hub install --no-prompt debezium/debezium-connector-postgresql:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-json-schema:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-memcached:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-redis:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-transform-common:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-transform-fix:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-transform-maxmind:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-transform-xml:latest && \
confluent-hub install --no-prompt jcustenborder/kafka-connect-twitter:latest && \
confluent-hub install --no-prompt mongodb/kafka-connect-mongodb:latest && \
confluent-hub install --no-prompt neo4j/kafka-connect-neo4j:latest && \
confluent-hub install --no-prompt splunk/kafka-connect-splunk:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-cassandra:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-http:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-influxdb:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-mqtt:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-rabbitmq:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-replicator:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-s3-source:latest && \
confluent-hub install --no-prompt confluentinc/kafka-connect-sftp:latest