[DOCS] Docker Guide Update for master (#19410)
* docker-update * id fix * Update installing-openvino-docker-linux.md * Update installing-openvino-docker-linux.md * Update installing-openvino-docker-linux.md
This commit is contained in:
parent
f9aa624099
commit
e6f09ac197
@ -26,7 +26,7 @@ Local Deployment Options
|
||||
|
||||
- using Debian / RPM packages - a recommended way for Linux operating systems;
|
||||
- using PIP package manager on PyPI - the default approach for Python-based applications;
|
||||
- using Docker images - if the application should be deployed as a Docker image, use a pre-built OpenVINO™ Runtime Docker image as a base image in the Dockerfile for the application container image. For more information about OpenVINO Docker images, refer to :doc:`Installing OpenVINO on Linux from Docker <openvino_docs_install_guides_installing_openvino_docker_linux>`
|
||||
- using Docker images - if the application should be deployed as a Docker image, use a pre-built OpenVINO™ Runtime Docker image as a base image in the Dockerfile for the application container image. For more information about OpenVINO Docker images, refer to :doc:`Installing OpenVINO from Docker <openvino_docs_install_guides_installing_openvino_docker>`
|
||||
|
||||
Furthermore, to customize your OpenVINO Docker image, use the `Docker CI Framework <https://github.com/openvinotoolkit/docker_ci>`__ to generate a Dockerfile and built the image.
|
||||
|
||||
|
@ -30,7 +30,7 @@ To use sample applications, install OpenVINO Runtime via one of the following di
|
||||
|
||||
* Archive files (recommended) - :doc:`Linux <openvino_docs_install_guides_installing_openvino_from_archive_linux>` | :doc:`Windows <openvino_docs_install_guides_installing_openvino_from_archive_windows>` | :doc:`macOS <openvino_docs_install_guides_installing_openvino_from_archive_macos>`
|
||||
* :doc:`APT <openvino_docs_install_guides_installing_openvino_apt>` or :doc:`YUM <openvino_docs_install_guides_installing_openvino_yum>` for Linux
|
||||
* Docker image - :doc:`Linux <openvino_docs_install_guides_installing_openvino_docker_linux>`
|
||||
* :doc:`Docker image <openvino_docs_install_guides_installing_openvino_docker>`
|
||||
* `Build from source <https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/build.md>`__
|
||||
|
||||
Make sure that you also `install OpenCV <https://github.com/opencv/opencv/wiki/BuildOpenCV4OpenVINO>`__ , as it's required for running sample applications.
|
||||
|
@ -147,7 +147,7 @@ What’s Next?
|
||||
############
|
||||
|
||||
* :doc:`GPU Device <openvino_docs_OV_UG_supported_plugins_GPU>`
|
||||
* :doc:`Install Intel® Distribution of OpenVINO™ toolkit for Linux from a Docker Image <openvino_docs_install_guides_installing_openvino_docker_linux>`
|
||||
* :doc:`Install Intel® Distribution of OpenVINO™ toolkit from a Docker Image <openvino_docs_install_guides_installing_openvino_docker>`
|
||||
* `Docker CI framework for Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/README.md>`__
|
||||
* `Get Started with DockerHub CI for Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/get-started.md>`__
|
||||
* `Dockerfiles with Intel® Distribution of OpenVINO™ toolkit <https://github.com/openvinotoolkit/docker_ci/blob/master/dockerfiles/README.md>`__
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Install Intel® Distribution of OpenVINO™ toolkit for Linux from a Docker Image {#openvino_docs_install_guides_installing_openvino_docker_linux}
|
||||
# Install Intel® Distribution of OpenVINO™ toolkit from a Docker Image {#openvino_docs_install_guides_installing_openvino_docker}
|
||||
|
||||
@sphinxdirective
|
||||
|
||||
@ -6,27 +6,38 @@
|
||||
:description: Learn how to use a prebuilt Docker image or create an image
|
||||
manually to install OpenVINO™ Runtime on Linux and Windows operating systems.
|
||||
|
||||
This guide presents infromation on how to use a pre-built Docker image/create an image manually to install OpenVINO™ Runtime.
|
||||
|
||||
Supported operating systems for the Docker Base image:
|
||||
Supported host operating systems for the Docker Base image:
|
||||
|
||||
- Ubuntu 22.04 LTS
|
||||
- Ubuntu 20.04 LTS
|
||||
- RedHat UBI 8
|
||||
- Linux
|
||||
- Windows (WSL2)
|
||||
- macOS (CPU exectuion only)
|
||||
|
||||
.. important::
|
||||
You can get started easily with pre-built and published docker images, which are available at:
|
||||
|
||||
While Windows is listed as a supported system, there is no dedicated Docker Image for it. To work with Windows, use Windows Subsystem for Linux (WSL2).
|
||||
* `Docker Hub <https://hub.docker.com/u/openvino>`__
|
||||
* `Red Hat Quay.io <https://quay.io/organization/openvino>`__
|
||||
* `Red Hat Ecosystem Catalog (runtime image) <https://catalog.redhat.com/software/containers/intel/openvino-runtime/606ff4d7ecb5241699188fb3>`__
|
||||
* `Red Hat Ecosystem Catalog (development image) <https://catalog.redhat.com/software/containers/intel/openvino-dev/613a450dc9bc35f21dc4a1f7>`__
|
||||
* `Azure Marketplace <https://azuremarketplace.microsoft.com/en-us/marketplace/apps/intel_corporation.openvino>`__
|
||||
|
||||
The `Docker CI framework <https://github.com/openvinotoolkit/docker_ci/>`__ can generate a Dockerfile, build, test, and deploy an image using the Intel® Distribution of OpenVINO™ toolkit. You can reuse available Dockerfiles, add your layer and customize the OpenVINO™ image to your needs. You can get started easily with pre-built and published docker images. Details on how to get started can be found `here <https://github.com/openvinotoolkit/docker_ci/blob/master/get-started.md>`__.
|
||||
.. note::
|
||||
|
||||
To start using them, the following conditions must be met:
|
||||
OpenVINO development environment in a docker container is also available in `notebook repository <https://github.com/openvinotoolkit/openvino_notebooks>`__ . It can be deployed in `OpenShift RedHat OpenData Science (RHODS) <https://github.com/openvinotoolkit/operator/blob/main/docs/notebook_in_rhods.md>`__
|
||||
|
||||
You can use the `available Dockerfiles on GitHub <https://github.com/openvinotoolkit/docker_ci/tree/master/dockerfiles>`__ or generate a Dockerfile with your settings via `DockerHub CI framework <https://github.com/openvinotoolkit/docker_ci/>`__ , which can generate a Dockerfile, build, test, and deploy an image using the Intel® Distribution of OpenVINO™ toolkit. You can reuse available Dockerfiles, add your layer and customize the OpenVINO™ image to your needs. Docker CI repository includes guides on how to how to `get started with docker images <https://github.com/openvinotoolkit/docker_ci/blob/master/get-started.md>`__ and how to use `OpenVINO™ Toolkit containers with GPU accelerators. <https://github.com/openvinotoolkit/docker_ci/blob/master/docs/accelerators.md>`__
|
||||
|
||||
|
||||
To start using Dockerfiles the following conditions must be met:
|
||||
|
||||
- Linux OS or Windows (under :ref:`Windows Subsystem for Linux (WSL2) <wsl-install>`)
|
||||
- Installed docker engine or compatible container engine
|
||||
- Permissions to run containers (sudo or docker group membership)
|
||||
|
||||
OpenVINO's `Docker <https://docs.docker.com/>`__ and `Bare Metal <https://docs.openvino.ai/2023.0/ovms_docs_deploying_server.html#doxid-ovms-docs-deploying-server>`__ distributions are identical, so the documentation applies to both.
|
||||
.. note::
|
||||
|
||||
OpenVINO's `Docker <https://docs.docker.com/>`__ and `Bare Metal <https://docs.openvino.ai/2023.0/ovms_docs_deploying_server.html#doxid-ovms-docs-deploying-server>`__ distributions are identical, so the documentation applies to both.
|
||||
|
||||
.. note::
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
Use YUM <openvino_docs_install_guides_installing_openvino_yum>
|
||||
Use Conda Forge <openvino_docs_install_guides_installing_openvino_conda>
|
||||
Use Homebrew <openvino_docs_install_guides_installing_openvino_brew>
|
||||
Use Docker <openvino_docs_install_guides_installing_openvino_docker_linux>
|
||||
Use Docker <openvino_docs_install_guides_installing_openvino_docker>
|
||||
|
||||
|
||||
If you want to install OpenVINO™ Runtime on your Linux machine, these are your options:
|
||||
@ -29,7 +29,7 @@ If you want to install OpenVINO™ Runtime on your Linux machine, these are your
|
||||
* :doc:`Install OpenVINO Runtime using YUM <openvino_docs_install_guides_installing_openvino_yum>`
|
||||
* :doc:`Install OpenVINO Runtime using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>`
|
||||
* :doc:`Install OpenVINO Runtime using Homebrew <openvino_docs_install_guides_installing_openvino_brew>`
|
||||
* :doc:`Install OpenVINO using Docker <openvino_docs_install_guides_installing_openvino_docker_linux>`
|
||||
* :doc:`Install OpenVINO using Docker <openvino_docs_install_guides_installing_openvino_docker>`
|
||||
|
||||
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
Use Archive <openvino_docs_install_guides_installing_openvino_from_archive_windows>
|
||||
Use PyPI <openvino_docs_install_guides_installing_openvino_pip>
|
||||
Use Conda Forge <openvino_docs_install_guides_installing_openvino_conda>
|
||||
Use Docker <openvino_docs_install_guides_installing_openvino_docker_linux>
|
||||
Use Docker <openvino_docs_install_guides_installing_openvino_docker>
|
||||
|
||||
|
||||
If you want to install OpenVINO™ Runtime on Windows, you have the following options:
|
||||
@ -23,7 +23,7 @@ If you want to install OpenVINO™ Runtime on Windows, you have the following op
|
||||
* :doc:`Install OpenVINO Runtime from an Archive File <openvino_docs_install_guides_installing_openvino_from_archive_windows>`
|
||||
* :doc:`Install OpenVINO Runtime using PyPI <openvino_docs_install_guides_installing_openvino_pip>`
|
||||
* :doc:`Install OpenVINO Runtime using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>`
|
||||
* :doc:`Install OpenVINO using Docker <openvino_docs_install_guides_installing_openvino_docker_linux>`
|
||||
* :doc:`Install OpenVINO using Docker <openvino_docs_install_guides_installing_openvino_docker>`
|
||||
|
||||
|
||||
@endsphinxdirective
|
||||
|
Loading…
Reference in New Issue
Block a user