Browse Source

Correct scripts in README

pull/3/head
Jordan Potter 6 years ago
parent
commit
0320555e9d
  1. 12
      README.md

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

Loading…
Cancel
Save