diff options
author | Leonardo Rizzi <l.rizzi@wide-net.org> | 2020-09-08 05:51:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 05:51:48 +0200 |
commit | 7e5f1b345aa2e99b7bcbcc89a1b7e4498237bbe8 (patch) | |
tree | a1da08eb7f740ea9a6ec039473afaa2137f68310 /docs/contributing | |
parent | 9dc90d6cc8c7dd17130c858591694723c4bf177c (diff) | |
download | vyos-documentation-7e5f1b345aa2e99b7bcbcc89a1b7e4498237bbe8.tar.gz vyos-documentation-7e5f1b345aa2e99b7bcbcc89a1b7e4498237bbe8.zip |
Docker run command
The docker run command was missing of the correct container label.
Diffstat (limited to 'docs/contributing')
-rw-r--r-- | docs/contributing/build-vyos.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/contributing/build-vyos.rst b/docs/contributing/build-vyos.rst index 9af21f51..e8bb9f37 100644 --- a/docs/contributing/build-vyos.rst +++ b/docs/contributing/build-vyos.rst @@ -93,7 +93,7 @@ The container can also be built directly from source: $ cd vyos-build $ docker build -t vyos/vyos-build:crux docker # For VyOS 1.2 - $ docker build -t vyos/vyos-build docker # For rolling release + $ docker build -t vyos/vyos-build:current docker # For rolling release .. note:: Since VyOS has switched to Debian (10) Buster in its ``current`` branch, you will require individual container for `current` and `crux` builds. @@ -184,7 +184,7 @@ Now a fresh build of the VyOS ISO can begin. Change directory to the ``vyos-buil $ docker run --rm -it --privileged -v $(pwd):/vyos -w /vyos vyos/vyos-build:crux bash # For VyOS 1.3 (equuleus, current) - $ docker run --rm -it --privileged -v $(pwd):/vyos -w /vyos vyos/vyos-build bash + $ docker run --rm -it --privileged -v $(pwd):/vyos -w /vyos vyos/vyos-build:current bash Start the build: @@ -348,7 +348,7 @@ Launch Docker container and build package .. code-block:: none # For VyOS 1.3 (equuleus, current) - $ docker run --rm -it --privileged -v $(pwd):/vyos -w /vyos vyos/vyos-build bash + $ docker run --rm -it --privileged -v $(pwd):/vyos -w /vyos vyos/vyos-build:current bash # Change to source directory $ cd vyos-1x |