Correct scripts in README

This commit is contained in:
Jordan Potter 2019-02-14 12:15:29 -08:00
parent 3d28131872
commit 0320555e9d

View file

@ -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
```