From 19eba48fcb3f2f69e711eb9e603489f2df736fbb Mon Sep 17 00:00:00 2001 From: Han Guangyu Date: Thu, 26 Sep 2024 13:29:27 +0800 Subject: [PATCH] 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 --- doc/source/install/docker-install-ubuntu.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/install/docker-install-ubuntu.rst b/doc/source/install/docker-install-ubuntu.rst index d7fdfc5d..36f167d0 100644 --- a/doc/source/install/docker-install-ubuntu.rst +++ b/doc/source/install/docker-install-ubuntu.rst @@ -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::