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
I found that there are some wget commands in Dockerfile. Maybe we can provide user some options to add jars without learning writing Dockerfile.
The text was updated successfully, but these errors were encountered:
You can just manually copy flink jars to docker, without changing anything. ie.
Copy the jars I want
SQL_CLIENT_CONTAINER_ID=$(docker ps -qf "name=sql-client") docker cp /myjars $SQL_CLIENT_CONTAINER_ID:/tmp/jars
Now copy all the jars to both sql-client and flink
cp /tmp/jars/*.jar /opt/flink/lib/. cp /tmp/jars/*.jar /opt/sql-client/lib/. ./sql-client.sh
Sorry, something went wrong.
No branches or pull requests
I found that there are some wget commands in Dockerfile.
Maybe we can provide user some options to add jars without learning writing Dockerfile.
The text was updated successfully, but these errors were encountered: