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.
|
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
|
```bash
|
||||||
docker run --name wireguard \
|
docker run --name wireguard \
|
||||||
--cap-add=NET_ADMIN
|
--cap-add=NET_ADMIN \
|
||||||
-v /path/to/conf/mullvadus2.conf:/etc/wireguard/mullvadus2.conf
|
-v /path/to/conf/mullvadus2.conf:/etc/wireguard/mullvadus2.conf \
|
||||||
jordanpotter/wireguard
|
jordanpotter/wireguard
|
||||||
```
|
```
|
||||||
|
|
||||||
Afterwards, you can link other containers to this one:
|
Afterwards, you can link other containers to this one:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -it --rm
|
docker run -it --rm \
|
||||||
--net=container:wireguard
|
--net=container:wireguard \
|
||||||
appropriate/curl http://httpbin.org/ip
|
appropriate/curl http://httpbin.org/ip
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue