You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Jordan Potter 3d28131872 Add Dockerfile and entrypoint script 6 years ago
Dockerfile Add Dockerfile and entrypoint script 6 years ago
LICENSE Initial commit 6 years ago
README.md Update README with instructions 6 years ago
entrypoint.sh Add Dockerfile and entrypoint script 6 years ago

README.md

Wireguard

This is a simple docker image to run a wireguard client.

Wireguard is implemented as a kernel module, which is key to its performance and simplicity. However, this means that Wireguard must be installed on the host operating system for this container to work properly. Instructions for installing Wireguard can be found here.

You will need a configuration file for your Wireguard interface. Many VPN providers will create this configuration file for you. For example, here is the configuration generator for Mullvad.

Now simply mount the configuration file and run:

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:

docker run -it --rm
    --net=container:wireguard
    appropriate/curl http://httpbin.org/ip