From 3b11a76e5d75af13c29de84a2e3fadc5552dd45c Mon Sep 17 00:00:00 2001 From: Gabriel Ionescu Date: Tue, 5 Dec 2017 17:08:22 +0100 Subject: Chapter 4: Update container chapter for Cavium board Signed-off-by: Gabriel Ionescu --- .../doc/container_virtualization.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc') diff --git a/doc/book-enea-nfv-access-guide/doc/container_virtualization.xml b/doc/book-enea-nfv-access-guide/doc/container_virtualization.xml index 2287146..52716bd 100644 --- a/doc/book-enea-nfv-access-guide/doc/container_virtualization.xml +++ b/doc/book-enea-nfv-access-guide/doc/container_virtualization.xml @@ -50,7 +50,7 @@ container can. Before starting an Enea NFV Access guest image, a root filesystem has to be imported in Docker: - docker import enea-nfv-access-guest-qemux86-64.tar.gz el7guest + docker import enea-nfv-access-guest-qemuarm64.tar.gz nfv_guest To check that the Docker image has been imported successfully, run: @@ -60,7 +60,7 @@ Finally, start an Enea NFV Access container with bash running as the shell, by running: - docker run -it el7guest /bin/bash + docker run -it nfv_guest /bin/bash
@@ -75,7 +75,7 @@ roots home folder to a container, the command line for Docker should have the following format: - docker run -it -v /home/root:/home/host_root/ el7guest /bin/bash + docker run -it -v /home/root:/home/host_root/ nfv_guest /bin/bash To check that folders have been properly passed from the host to the container, create a file in the source folder on the host root @@ -94,14 +94,14 @@ Mapping the folder can be done as exemplified above: - docker run -it --rm -v /var/run/openvswitch/:/var/run/openvswitch/ el7guest /bin/bash + docker run -it --rm -v /var/run/openvswitch/:/var/run/openvswitch/ nfv_guest /bin/bash Mapping a file descriptor is done in a similar way, but the -v flag needs to point directly to it: - docker run -it --rm -v /var/run/openvswitch/vhost-user1 el7guest /bin/bash + docker run -it --rm -v /var/run/openvswitch/vhost-user1 nfv_guest /bin/bash
@@ -116,7 +116,7 @@ /mnt/huge location, a container can also access hugepages by being launched with: - docker run -it -v /mnt/huge el7guest /bin/bash + docker run -it -v /mnt/huge nfv_guest /bin/bash
@@ -129,8 +129,8 @@ container if the --privileged flag is passed to the command line: - docker run --privileged -it el7guest /bin/bash + docker run --privileged -it nfv_guest /bin/bash
- \ No newline at end of file + -- cgit v1.2.3-54-g00ecf