diff --git a/README.md b/README.md index c5e11f59..0e27bd9a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ You have found the easiest way to install & manage WireGuard on any Linux host!
-
+
+docker run -d \ + --name=wg-easy \ + --cap-add=NET_ADMIN \ + --cap-add=SYS_MODULE \ + -e WG_HOST=YOUR_SERVER_IP \ + -e PASSWORD=YOUR_ADMIN_PASSWORD \ + -v ~/.wg-easy:/etc/wireguard \ + -p 51820:51820/udp \ + -p 51821:51821/tcp \ + --sysctl="net.ipv4.conf.all.src_valid_mark=1" \ + --sysctl="net.ipv4.ip_forward=1" \ + --restart unless-stopped \ + weejewel/wg-easy +-Optionally, set a Web UI password by uncommenting `PASSWORD=foobar123` and change the password. +> 🌍 Replace `YOUR_SERVER_IP` with your WAN IP, or a Dynamic DNS hostname. +> +> 🔑 Replace `YOUR_ADMIN_PASSWORD` with a password to log in on the Web UI. -> By default, any WireGuard client will have access to the Web UI, unless you set a password. +The Web UI will now be available on `http://0.0.0.0:51821`. -### 3. Run WireGuard - -Finally, run WireGuard. It will automatically start after a reboot. - -```bash -$ docker-compose up --detach -``` - -The Web UI will be available on `http://0.0.0.0:51821`. You can create new clients there. +> 💾 Your configuration files will be saved in `~/.wg-easy` ## Options -These options can be configured in `docker-compose.yml` under `environment`. +These options can be configured by setting environment variables using `-e KEY="VALUE"` in the `docker run` command. | Env | Default | Example | Description | | - | - | - | - | @@ -95,8 +91,8 @@ These options can be configured in `docker-compose.yml` under `environment`. To update to the latest version, run: ```bash -docker-compose down -docker-compose pull -docker-compose up --detach --remove-orphans -docker image prune +docker stop wg-easy +docker rm wg-easy ``` + +And then run the 'Run WireGuard Easy' command above again. \ No newline at end of file