Correct scripts in README
This commit is contained in:
parent
3d28131872
commit
0320555e9d
1 changed files with 6 additions and 6 deletions
10
README.md
10
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
|
||||
--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…
Reference in a new issue