diff options
| author | Konstantin Vasin <126960927+k-v1@users.noreply.github.com> | 2023-11-26 18:10:29 +0300 | 
|---|---|---|
| committer | Konstantin Vasin <126960927+k-v1@users.noreply.github.com> | 2023-11-26 19:21:49 +0300 | 
| commit | da694b2e93e0cb017c596cef81392b883ac6b3f3 (patch) | |
| tree | a37c3a4aba84a57254543ce32e23328d245c5f46 /doc/developer/building-docker.rst | |
| parent | 0dc7704fd50a035c85dea58408abea80c4816f15 (diff) | |
docker: fix typos in docs for ubuntu20-ci and ubuntu22-ci
Signed-off-by: Konstantin Vasin <126960927+k-v1@users.noreply.github.com>
Diffstat (limited to 'doc/developer/building-docker.rst')
| -rw-r--r-- | doc/developer/building-docker.rst | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/developer/building-docker.rst b/doc/developer/building-docker.rst index 9d42784e35..644e02bd6c 100644 --- a/doc/developer/building-docker.rst +++ b/doc/developer/building-docker.rst @@ -14,7 +14,7 @@ source-built FRR on the following base platforms:  The following platform images are used to support Travis CI and can also  be used to reproduce topotest failures when the docker host is Ubuntu -(tested on 18.04 and 20.04): +(tested on 20.04 and 22.04):  * Ubuntu 20.04  * Ubuntu 22.04 @@ -139,12 +139,12 @@ Build image (from project root directory)::  Running Full Topotest:: -   docker run --init -it --privileged --name frr -v /lib/modules:/lib/modules \ +   docker run --init -it --privileged --name frr-ubuntu20 -v /lib/modules:/lib/modules \         frr-ubuntu20:latest bash -c 'cd ~/frr/tests/topotests ; sudo pytest -nauto --dist=loadfile'  Extract results from the above run into `run-results` dir and analyze:: -   tests/topotest/analyze.py -C frr -Ar run-results +   tests/topotests/analyze.py -C frr-ubuntu20 -Ar run-results  Start the container:: @@ -176,12 +176,12 @@ Build image (from project root directory)::  Running Full Topotest:: -   docker run --init -it --privileged --name frr -v /lib/modules:/lib/modules \ +   docker run --init -it --privileged --name frr-ubuntu22 -v /lib/modules:/lib/modules \         frr-ubuntu22:latest bash -c 'cd ~/frr/tests/topotests ; sudo pytest -nauto --dist=loadfile'  Extract results from the above run into `run-results` dir and analyze:: -   tests/topotest/analyze.py -C frr -Ar run-results +   tests/topotests/analyze.py -C frr-ubuntu22 -Ar run-results  Start the container::  | 
