Skip to content

Commit d89090a

Browse files
Fixes
1 parent 5d8da8f commit d89090a

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

content/CTG_50_docs/CTG_60_operation/LSN_11_docker-tutorial/docker-tutorial.md

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Deploying Simplicité with Docker images tutorial
22
================================================
33

4-
For this tutorial we use an out-of-the-box **CentOS 7**, **CentOS 8/AlmaLinux/RockyLinux** or **Debian** host but this can be transposed to any other host OS.
4+
For this tutorial we use an out-of-the-box **CentOS 7**, **CentOS 8+/AlmaLinux/RockyLinux** or **Debian** host but this can be transposed to any other host OS.
55

66
By following the steps below you should have an easily-maintainable **production-grade** deployment of Simplicité up and running **in a few minutes**.
77

@@ -19,7 +19,7 @@ sudo yum -y update && sudo yum clean all
1919
sudo reboot
2020
```
2121

22-
Update system on **CentOS 8/AlmaLinux/RockyLinux**:
22+
Update system on **CentOS 8+/AlmaLinux/RockyLinux**:
2323

2424
```bash
2525
sudo dnf -y update && sudo dnf clean all
@@ -46,17 +46,10 @@ sudo systemctl enable firewalld
4646
sudo systemctl start firewalld
4747
```
4848

49-
Install and enable firewall on **CentOS 8/AlmaLinux/RockyLinux**:
49+
Install and enable firewall on **CentOS 8+/AlmaLinux/RockyLinux**:
5050

5151
```bash
5252
sudo dnf -y install firewalld && sudo dnf clean all
53-
```
54-
55-
> **Note**: > Depending on the version of Docker that you use and if your host is running **CentOS 8/AlmaLinux/RockyLinux** you may encounter issues with Docker networking vs firewall rules.
56-
> In such a case, you can try changing the default firewall backend to iptables in `/etc/firewalld/firewalld.conf` (replace `FirewallBackend=nftables` by `FirewallBackend=iptables`).
57-
> Note that some recent host kernels do not support iptables anymore, don't try this in this case.
58-
59-
```bash
6053
sudo systemctl enable firewalld
6154
sudo systemctl start firewalld
6255
```
@@ -90,7 +83,7 @@ sudo yum -y install vim-enhanced git wget curl zip unzip && sudo yum clean all
9083
sudo yum -y install epel-release && sudo yum -y install certbot htop && sudo yum clean all
9184
```
9285

93-
Install other useful packages on **CentOS 8/AlmaLinux/RockyLinux**:
86+
Install other useful packages on **CentOS 8+/AlmaLinux/RockyLinux**:
9487

9588
```bash
9689
sudo dnf -y install vim-enhanced git wget curl zip unzip && sudo dnf clean all
@@ -126,7 +119,7 @@ Install database clients on **CentOS 7**:
126119
sudo yum -y install mariadb postgresql && sudo yum clean all
127120
```
128121

129-
Install database clients on **CentOS 8/AlmaLinux/RockyLinux**:
122+
Install database clients on **CentOS 8+/AlmaLinux/RockyLinux**:
130123

131124
```bash
132125
sudo dnf -y install mariadb postgresql && sudo dnf clean all
@@ -148,7 +141,7 @@ sudo systemctl enable docker
148141
sudo systemctl start docker
149142
```
150143

151-
Install **Docker** on **CentOS 8/AlmaLinux/RockyLinux**:
144+
Install **Docker** on **CentOS 8+/AlmaLinux/RockyLinux**:
152145

153146
```bash
154147
sudo dnf -y install 'dnf-command(config-manager)'
@@ -200,7 +193,7 @@ Install the **Docker compose** tool on **CentOS 7**:
200193
sudo yum -y install epel-release && sudo yum -y install docker-compose && sudo yum clean all
201194
```
202195

203-
Install the **Docker compose** tool on **CentOS 8/AlmaLinux/RockyLinux** or **Debian**:
196+
Install the **Docker compose** tool on **CentOS 8+/AlmaLinux/RockyLinux** or **Debian**:
204197

205198
Check the latest `X.Y.Z` version on [GitHub](https://github.com/docker/compose/releases/latest).
206199

0 commit comments

Comments
 (0)