docs/content/examples/tutorials/basic-installation.md
Follow the Docs here: https://docs.docker.com/engine/install/ and install Docker on your host.
wg-easyCreate a directory for the configuration files (you can choose any directory you like):
sudo mkdir -p /etc/docker/containers/wg-easy
Download docker compose file
sudo curl -o /etc/docker/containers/wg-easy/docker-compose.yml https://raw.githubusercontent.com/wg-easy/wg-easy/master/docker-compose.yml
Start wg-easy
cd /etc/docker/containers/wg-easy
sudo docker compose up -d
If you are using a firewall, you need to open the following ports:
These ports can be changed, so if you change them you have to update your firewall rules accordingly.
wg-easyTo update wg-easy to the latest version, run:
cd /etc/docker/containers/wg-easy
sudo docker compose pull
sudo docker compose up -d
If you want to enable auto-updates, follow the instructions here: Auto Updates