Fix container tag for 2023.2 on doc

Currently, the container tag for 99cloud/skyline in the documentation is
uified as "latest" for the corresponding latest branch, which is
inconsistent with the inconsistent with the version branches.

Update 99cloud/skyline container tag from "latest" to "2023.2" in
doc/source/install/docker-install-ubuntu.rst to align with the branch.

Change-Id: If2e93c1fa50f6745e7b670f01d212bd8872c2b5f
This commit is contained in:
Han Guangyu
2024-09-26 14:03:16 +08:00
committed by HanGuangyu
parent adbbbbb98a
commit a41e9f2825

View File

@@ -93,7 +93,7 @@ We will install Skyline service from docker image.
.. code-block:: console .. code-block:: console
$ sudo docker pull 99cloud/skyline:latest $ sudo docker pull 99cloud/skyline:2023.2
#. Ensure that some folders of skyline have been created #. Ensure that some folders of skyline have been created
@@ -133,7 +133,7 @@ Finalize installation
-e KOLLA_BOOTSTRAP="" \ -e KOLLA_BOOTSTRAP="" \
-v /etc/skyline/skyline.yaml:/etc/skyline/skyline.yaml \ -v /etc/skyline/skyline.yaml:/etc/skyline/skyline.yaml \
-v /var/log:/var/log \ -v /var/log:/var/log \
--net=host 99cloud/skyline:latest --net=host 99cloud/skyline:2023.2
.. code-block:: text .. code-block:: text
@@ -164,7 +164,7 @@ Finalize installation
$ sudo docker run -d --name skyline --restart=always \ $ sudo docker run -d --name skyline --restart=always \
-v /etc/skyline/skyline.yaml:/etc/skyline/skyline.yaml \ -v /etc/skyline/skyline.yaml:/etc/skyline/skyline.yaml \
-v /var/log:/var/log \ -v /var/log:/var/log \
--net=host 99cloud/skyline:latest --net=host 99cloud/skyline:2023.2
.. note:: .. note::