Fix container tag for 2024.1 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 version branches.

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

Change-Id: I5f29130e49d5acdd3497988dbfb7e90265676607
This commit is contained in:
Han Guangyu
2024-09-26 13:29:27 +08:00
parent 7fd7955d1e
commit 19eba48fcb

View File

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