Browse Source

Update README.md

pull/814/head
Philip H 2 years ago
committed by GitHub
parent
commit
bcc03e8163
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 22
      README.md

22
README.md

@ -33,7 +33,8 @@ You have found the easiest way to install & manage WireGuard on any Linux host!
### 1. Prepare (if needed) ### 1. Prepare (if needed)
**CentOS 7:** **CentOS 7/8/9:**
```bash ```bash
$ sudo yum install epel-release elrepo-release yum-plugin-elrepo kmod-wireguard $ sudo yum install epel-release elrepo-release yum-plugin-elrepo kmod-wireguard
``` ```
@ -47,7 +48,24 @@ you need to check how to install docker with your Package Manager.
```bash ```bash
$ curl -sSL https://get.docker.com | sh $ curl -sSL https://get.docker.com | sh
$ sudo usermod -aG docker $(whoami) $ sudo usermod -aG docker $USER
$ systemctl enable --now docker
$ exit
```
**CentOS 7/8/9:**
```bash
$ sudo yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
$ sudo usermod -aG docker $USER
$ systemctl enable --now docker
$ exit
```
**Arch Linux/other Arch based Distros:**
```bash
$ sudo pacman -S docker docker-compose
$ sudo usermod -aG docker $USER
$ systemctl enable --now docker
$ exit $ exit
``` ```

Loading…
Cancel
Save