diff --git a/README.md b/README.md index 20dc248..14a017c 100644 --- a/README.md +++ b/README.md @@ -5,19 +5,19 @@ Wireguard is implemented as a kernel module, which is key to its performance and You will need a configuration file for your Wireguard interface. Many VPN providers will create this configuration file for you. For example, [here](http://mullvad.net/en/download/wireguard-config) is the configuration generator for Mullvad. -Now simply mount the configuration file and run: +Now simply mount the configuration file and run! For example, if your configuration file is located at `/path/to/conf/mullvadus2.conf`: ```bash -docker run --name wireguard \ - --cap-add=NET_ADMIN - -v /path/to/conf/mullvadus2.conf:/etc/wireguard/mullvadus2.conf +docker run --name wireguard \ + --cap-add=NET_ADMIN \ + -v /path/to/conf/mullvadus2.conf:/etc/wireguard/mullvadus2.conf \ jordanpotter/wireguard ``` Afterwards, you can link other containers to this one: ```bash -docker run -it --rm - --net=container:wireguard +docker run -it --rm \ + --net=container:wireguard \ appropriate/curl http://httpbin.org/ip ```