Skip to content

Commit

Permalink
Merge pull request #7978 from wazuh/bug/26695-change-urllib3-version
Browse files Browse the repository at this point in the history
Change the Python version and `urllib3` to `1.26.20`
  • Loading branch information
javimed authored Nov 22, 2024
2 parents 8d12342 + 023ad94 commit 2046bcf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions source/proof-of-concept-guide/monitoring-docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ Perform the following steps to install Docker on the Ubuntu endpoint and configu

.. tabs::

.. group-tab:: Python 3.7–3.10
.. group-tab:: Python 3.8–3.10

.. code-block:: console
$ curl -sSL https://get.docker.com/ | sh
$ sudo pip3 install docker==7.1.0 urllib3==2.2.2 requests==2.32.2
$ sudo pip3 install docker==7.1.0 urllib3==1.26.20 requests==2.32.2
.. group-tab:: Python 3.11–3.12

.. code-block:: console
$ curl -sSL https://get.docker.com/ | sh
$ sudo pip3 install docker==7.1.0 urllib3==2.2.2 requests==2.32.2 --break-system-packages
$ sudo pip3 install docker==7.1.0 urllib3==1.26.20 requests==2.32.2 --break-system-packages
.. note::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ Docker library for Python

.. tabs::

.. group-tab:: Python 3.7–3.10
.. group-tab:: Python 3.8–3.10

.. code-block:: console
$ pip3 install docker==7.1.0 urllib3==2.2.2 requests==2.32.2
$ pip3 install docker==7.1.0 urllib3==1.26.20 requests==2.32.2
.. group-tab:: Python 3.11–3.12

.. code-block:: console
$ pip3 install docker==7.1.0 urllib3==2.2.2 requests==2.32.2 --break-system-packages
$ pip3 install docker==7.1.0 urllib3==1.26.20 requests==2.32.2 --break-system-packages
.. note::

Expand Down

0 comments on commit 2046bcf

Please sign in to comment.