Philip H
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
20 additions and
2 deletions
-
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 |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
|