diff --git a/community/installation-guides/wings/centos7.md b/community/installation-guides/wings/centos7.md index 88714f1e..fbba67c4 100644 --- a/community/installation-guides/wings/centos7.md +++ b/community/installation-guides/wings/centos7.md @@ -13,28 +13,28 @@ We will first begin by installing all of Wings' [required](/wings/1.0/installing ### Docker ```bash +## Install yum tools yum install -y yum-utils device-mapper-persistent-data lvm2 -sudo yum remove docker-ce docker-ce-cli containerd.io +## Add the docker repo +yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo -yum install -y https://download.docker.com/linux/centos/7/x86_64/stable/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm - - -sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo - -sudo yum install -y docker-ce docker-ce-cli +## Install docker +yum install -y docker-ce docker-ce-cli +## Enable docker service systemctl enable docker systemctl start docker ``` -### Server Ports +### FirewallD Changes ```bash firewall-cmd --add-port 8080/tcp --permanent firewall-cmd --add-port 2022/tcp --permanent firewall-cmd --permanent --zone=trusted --change-interface=docker0 +firewall-cmd --zone=trusted --add-masquerade --permanent firewall-cmd --reload ``` -## Installing the Wings +## Installing Wings Great, now all of the dependencies and firewall rules have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-1). diff --git a/community/installation-guides/wings/centos8.md b/community/installation-guides/wings/centos8.md index a19ce306..d9d586e8 100644 --- a/community/installation-guides/wings/centos8.md +++ b/community/installation-guides/wings/centos8.md @@ -13,17 +13,21 @@ We will first begin by installing all of the Wings' [required](/wings/1.0/instal ### Docker ```bash +## Install yum tools dnf install -y dnf-utils device-mapper-persistent-data lvm2 +## Add the docker repo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo +## Install docker dnf install -y docker-ce --nobest +## Enable docker service systemctl enable docker systemctl start docker ``` -### FirewallD changes +### FirewallD Changes ```bash firewall-cmd --add-port 8080/tcp --permanent firewall-cmd --add-port 2022/tcp --permanent @@ -32,5 +36,5 @@ firewall-cmd --zone=trusted --add-masquerade --permanent firewall-cmd --reload ``` -## Installing the Wings +## Installing Wings Great, now all of the dependencies and firewall rules have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-1). diff --git a/community/installation-guides/wings/debian10.md b/community/installation-guides/wings/debian10.md index 24c0df6d..de06a97b 100644 --- a/community/installation-guides/wings/debian10.md +++ b/community/installation-guides/wings/debian10.md @@ -26,9 +26,10 @@ add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $( apt update -y apt install -y docker-ce +## Enable docker service systemctl enable docker systemctl start docker ``` -## Installing the Wings +## Installing Wings Great, now all of the dependencies have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-1). diff --git a/community/installation-guides/wings/debian9.md b/community/installation-guides/wings/debian9.md index e821c073..730b518e 100644 --- a/community/installation-guides/wings/debian9.md +++ b/community/installation-guides/wings/debian9.md @@ -26,9 +26,10 @@ add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $( apt update -y apt install -y docker-ce +## Enable docker service systemctl enable docker systemctl start docker ``` -## Installing the Wings +## Installing Wings Great, now all of the dependencies have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-2). diff --git a/community/installation-guides/wings/ubuntu1804.md b/community/installation-guides/wings/ubuntu1804.md index 9c48ed36..6d9f8a02 100644 --- a/community/installation-guides/wings/ubuntu1804.md +++ b/community/installation-guides/wings/ubuntu1804.md @@ -13,11 +13,13 @@ We will first begin by installing all of Wings' [required](/wings/1.0/installing ### Docker ```bash +## Install docker apt install -y docker.io +## Enable docker service systemctl enable docker systemctl start docker ``` -## Installing the Wings -Great, now all of the dependencies and firewall rules have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-1). +## Installing Wings +Great, now all of the dependencies and firewall rules have been dealt with. From here follow the [official Wings installation documentation](/wings/1.0/installing.md#installing-wings-1). \ No newline at end of file diff --git a/community/installation-guides/wings/ubuntu2004.md b/community/installation-guides/wings/ubuntu2004.md index 700ea896..a08d41e7 100644 --- a/community/installation-guides/wings/ubuntu2004.md +++ b/community/installation-guides/wings/ubuntu2004.md @@ -13,11 +13,13 @@ We will first begin by installing all of Wings' [required](/wings/1.0/installing ### Docker ```bash +## Install docker apt install -y docker.io +## Enable docker service systemctl enable docker systemctl start docker ``` -## Installing the Wings +## Installing Wings Great, now all of the dependencies and firewall rules have been dealt with. From here follow the [official Wings installation documentation](/wings/installing.md#installing-wings-2).