-
-
Notifications
You must be signed in to change notification settings - Fork 7
Added EDC Connector #373
New issue
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
Added EDC Connector #373
Changes from 8 commits
9bfe00c
1bededa
e7aaad0
0b05877
7cf4b73
613f3ac
93e80b1
ba0d2f1
0a3f900
18de7d2
ffc8bb3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM stackable/image/java-base | ||
|
||
ARG PRODUCT | ||
ARG RELEASE | ||
|
||
LABEL name="Hello World" \ | ||
maintainer="[email protected]" \ | ||
vendor="Stackable GmbH" \ | ||
version="${PRODUCT}" \ | ||
release="${RELEASE}" \ | ||
summary="The Stackable image for Apache Druid." \ | ||
description="This image is deployed by the Stackable Operator for Apache Druid." | ||
fhennig marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
# https://github.com/hadolint/hadolint/wiki/DL4006 | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN microdnf update && \ | ||
microdnf clean all | ||
|
||
USER stackable | ||
WORKDIR /stackable | ||
|
||
RUN curl -L https://repo.stackable.tech/repository/packages/edc/dataspace-connector-${PRODUCT}.jar -o connector.jar | ||
|
||
CMD ["java", "-Dedc.fs.config=./mount/config/config.properties", "-jar", "connector.jar" ] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# EDC Connector Image | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should mention that it is not part of SDP. Please coordinate with @stackfab or @stefanigel on wording There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've labelled it as a "technology preview" component |
||
|
||
Links: | ||
|
||
- [The official Connector repo](https://github.com/eclipse-edc/Connector) | ||
- [The IONOS S3 extension](https://github.com/Digital-Ecosystems/edc-ionos-s3) | ||
- [Our EDC Operator](https://github.com/stackabletech/edc-operator/) | ||
- [The EDC Connector build - our own](https://github.com/stackabletech/edc-operator/tree/main/edc-connector) based off of the IONOS Repo. |
Uh oh!
There was an error while loading. Please reload this page.