diff options
author | Gilbert De Leon <gdleonq@gmail.com> | 2023-08-23 23:16:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 23:16:21 -0700 |
commit | 1e2828453c9d92661d4b5a8d6876afa713d9e321 (patch) | |
tree | 9f783ee8a411417180b652e17f603c338cac04e6 /docs/installation | |
parent | 9a08e1a8748fcf87ff35ac563453c59288adbd01 (diff) | |
download | vyos-documentation-1e2828453c9d92661d4b5a8d6876afa713d9e321.tar.gz vyos-documentation-1e2828453c9d92661d4b5a8d6876afa713d9e321.zip |
Updating documentation
Adding curl to download current rolling version from github
replacing old 2021 file with the current 2023 version
Diffstat (limited to 'docs/installation')
-rw-r--r-- | docs/installation/virtual/docker.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/installation/virtual/docker.rst b/docs/installation/virtual/docker.rst index e2bc0198..c4ff2c15 100644 --- a/docs/installation/virtual/docker.rst +++ b/docs/installation/virtual/docker.rst @@ -49,7 +49,7 @@ Deploy container from ISO ========================= Download the ISO on which you want to base the container. In this example, -the name of the ISO is ``vyos-1.4-rolling-202111281249-amd64.iso``. If you +the name of the ISO is ``vyos-1.4-rolling-202308240020-amd64.iso``. If you created a custom IPv6-enabled network, the ``docker run`` command below will require that this network be included as the ``--net`` parameter to ``docker run``. @@ -57,9 +57,10 @@ will require that this network be included as the ``--net`` parameter to .. code-block:: none $ mkdir vyos && cd vyos - $ cp ~/vyos-1.4-rolling-202111281249-amd64.iso . + $ curl -o vyos-1.4-rolling-202308240020-amd64.iso https://github.com/vyos/vyos-rolling-night +ly-builds/releases/download/1.4-rolling-202308240020/vyos-1.4-rolling-202308240020-amd64.iso $ mkdir rootfs - $ sudo mount -o loop vyos-1.4-rolling-202111281249-amd64.iso rootfs + $ sudo mount -o loop vyos-1.4-rolling-202308240020-amd64.iso rootfs $ sudo apt-get install -y squashfs-tools $ mkdir unsquashfs $ sudo unsquashfs -f -d unsquashfs/ rootfs/live/filesystem.squashfs |