We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ref. https://docs.confluent.io/platform/current/connect/confluent-hub/index.html
Need to document this instead
FROM confluentinc/confluent-cli:latest AS deps ENV CONNECT_PLUGIN_PATH="/tmp/connectors" ARG JDBC_CONNECTOR_VERSION=10.8.0 \ DEBEZIUM_CONNECTOR_VERSION=2.5.4 # install kafka-connect-jdbc from Confluent Hub RUN mkdir -p "$CONNECT_PLUGIN_PATH" && echo 'plugin.path=/tmp/connectors' > /tmp/connect.properties \ && confluent connect plugin install \ "confluentinc/kafka-connect-jdbc:$JDBC_CONNECTOR_VERSION" \ --plugin-directory "$CONNECT_PLUGIN_PATH" --worker-configurations /tmp/connect.properties --force \ && confluent connect plugin install \ "debezium/debezium-connector-postgresql:$DEBEZIUM_CONNECTOR_VERSION" \ --plugin-directory "$CONNECT_PLUGIN_PATH" --worker-configurations /tmp/connect.properties --force FROM cricketeerone/apache-kafka-connect:3.8.0 COPY --from=deps /tmp/connectors /app/libs/ext
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ref. https://docs.confluent.io/platform/current/connect/confluent-hub/index.html
Need to document this instead
The text was updated successfully, but these errors were encountered: