-
Notifications
You must be signed in to change notification settings - Fork 211
Migrate from docker-flink/docker-flink #1
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
Merged
Merged
Conversation
This file contains hidden or 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
Adds a script add-version.sh which templates out Dockerfiles for all
variants of a given Flink release.
usage: ./add-version.sh -r flink-release -f flink-version
I removed this because the start-foreground script is not yet part of the flink distribution
This is an outlier, is not supported by Flink going forward, and makes the build more complicated because for whatever reason there is no Flink release for 1.1-hadoop1-scala_2.11.
Relying on key servers causes build reliability issues. The KEYS file is from https://www.apache.org/dist/flink/ and includes all keys eligible to sign Flink releases.
I'm inclined not to mess with anything in the Flink release directory if we don't have to. Additionally, there is precedent for putting `docker-entrypoint.sh` in `/`, including the Docker official images documentation[1]. ADD has some weird behaviors (such as supporting URLs) while COPY does only what it says on the tin, which is what we want here. [1]https://github.com/docker-library/official-images/#consistency
Adding 1.8.2 release
add GPG key for flink 1.9.1
Support environment variable substitution for flink-conf.yaml
Update Dockerfiles for 1.9.2 release
…bout missing files
Add ENABLE_BUILT_IN_PLUGINS environment variable
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR migrates the git history from https://github.com/docker-flink/docker-flink to https://github.com/apache/flink-docker.
Henceforth, development on this project will occur in this repository, and once this PR is merged I will add a deprecation warning to https://github.com/docker-flink/docker-flink.