-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add info about Executor Builder App to the installation guide #371
base: main
Are you sure you want to change the base?
Add info about Executor Builder App to the installation guide #371
Conversation
docs/geospatial-install.md
Outdated
@@ -1,29 +1,73 @@ | |||
# Setup Custom Executor Docker Image with the Geospatial Extension for KNIME Business Hub | |||
|
|||
Running a workflow on KNIME Business Hub requires an Execution Context (EC). An EC runs one or multiple pods. A pod holds Docker containers in turn, which run Docker images in the end. In general, one can simply use the official Docker images from the public [KNIME Artifact Registry](https://registry.hub.knime.com/) to create an EC. | |||
## Introduction | |||
Running a workflow on KNIME Business Hub requires an Execution Context (EC). Inside that EC runs one or multiple pods - that hold Docker containers - which run Docker images. In general, one can simply use the official Docker images from the public [KNIME Artifact Registry](https://registry.hub.knime.com/) to create an EC. A list of all available default KNIME docker images can be found [here](https://docs.knime.com/latest/business_hub_admin_guide/index.html#docker-executor-images). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to KNIME Document
With the release of 5.3.2 the docker image name does not need the registry.hub.knime.com prefix anymore. Find more information about KNIME Executor images provided by KNIME here.
After release of 5.3.1, all the KNIME docker images are hosted on Docker Hub instead.
docs/geospatial-install.md
Outdated
|
||
Check out [this video](https://www.youtube.com/watch?v=-dO79Id3VAo&t=143s) from the KNIMETV channel that helps you to find the right update site URL and the Feature ID. | ||
Check out [this video](https://www.youtube.com/watch?v=-dO79Id3VAo&t=143s) from the KNIMETV channel that helps you to find the right update site URL and the feature ID. | ||
|
||
# Define the base image | ||
FROM registry.hub.knime.com/knime/knime-full:r-5.2.1-369 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After release of 5.3.1, you can use from Docker hub directly and skip the registry.
With the release of 5.3.2 the docker image name does not need the registry.hub.knime.com prefix anymore. Find more information about KNIME Executor images provided by KNIME here.
use something like,
knime/knime-full:r-5.3.3-666
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think all is good, I added the option that use prebuilt image that we have
@wybert can you please review and merge or comment. Thanks Tobias