From f7b57cdf9e5f747d8f467e8a6d4a6df4b026084e Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 19 Apr 2023 17:48:28 +0200 Subject: [PATCH] Update readme.md --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 7740382..ab2c3ad 100644 --- a/readme.md +++ b/readme.md @@ -119,7 +119,7 @@ docker run -it --rm -p 5000:5000 --device=/dev/kvm --cap-add NET_ADMIN --stop-ti By default the container uses bridge networking, and uses the same IP as the docker host. - If you want to give it a seperate IP address, create a macvlan network that matches your local subnet, for example: + If you want to give it a seperate IP address, create a macvlan network. For example: ``` $ docker network create -d macvlan \ @@ -128,13 +128,13 @@ docker run -it --rm -p 5000:5000 --device=/dev/kvm --cap-add NET_ADMIN --stop-ti --ip-range=192.168.0.100/28 \ -o parent=eth0 vdsm ``` - Modify these values to match your network configuration. And change the network of the container to `vdsm` in your run command or compose file: + Modify these values to match your local subnet. And change the docker network of the container from `bridged` to `vdsm` in your run command or compose file: ``` --network vdsm --ip=192.168.0.100 ``` - This also has the advantage that you don't need to do any portmapping anymore, because all ports will be fully exposed. + This also has the advantage that you don't need to do any portmapping anymore, because all ports will be fully exposed this way. * ### How do I install a specific version of vDSM? ###