Skip to content

Commit a0e3022

Browse files
committed
initial commit
1 parent 595491b commit a0e3022

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ In view of the great complexity in managing network rules and policies in firewa
1616

1717
## Install instructions
1818

19+
We offer two method to you get up and running the NameZeus into your infrastructure:
20+
1921
> *Notice that is an alpha version yet*
2022
2123
<details>
2224
<summary style="font-size: 20px;"><strong>Install using Docker Compose</strong></summary>
2325

24-
### 1° - Creating project folder
26+
#### 1° - Creating project folder
2527

2628
```bash
2729
mkdir -p /opt/namedzeus/secrets/
2830
```
2931

30-
### 2° - Creating the secrets
32+
#### 2° - Creating the secrets
3133

3234
```bash
3335
openssl rand -base64 32 > /opt/namedzeus/secrets/main_key
@@ -37,13 +39,13 @@ In view of the great complexity in managing network rules and policies in firewa
3739
openssl rand -base64 32 > /opt/namedzeus/secrets/namedzeus_password
3840
```
3941

40-
### 3° - Adding the project composition
42+
#### 3° - Adding the project composition
4143

4244
```bash
4345
cat > /opt/namedzeus/docker-compose.yml
4446
```
4547

46-
### 4° - Running project
48+
#### 4° - Running project
4749

4850
```bash
4951
docker compose -f /opt/namedzeus/docker-compose.yml up -d
@@ -53,13 +55,13 @@ In view of the great complexity in managing network rules and policies in firewa
5355
<details>
5456
<summary style="font-size: 20px;"><strong>Install using Docker Swarm</strong></summary>
5557

56-
# 1° - Creating project folder
58+
#### 1° - Creating project folder
5759

5860
```bash
5961
mkdir -p /opt/namedzeus/
6062
```
6163

62-
### 2° - Creating the secrets
64+
#### 2° - Creating the secrets
6365

6466
```bash
6567
openssl rand -base64 32 | docker secret create main_key -
@@ -69,13 +71,13 @@ In view of the great complexity in managing network rules and policies in firewa
6971
openssl rand -base64 32 | docker secret create namedzeus_password -
7072
```
7173

72-
### 3° - Adding the project composition
74+
#### 3° - Adding the project composition
7375

7476
```bash
7577
cat > /opt/namedzeus/docker-swarm.yml
7678
```
7779

78-
### 4° - Running project
80+
#### 4° - Running project
7981

8082
```bash
8183
docker stack deploy -c /opt/namedzeus/docker-swarm.yml namedzeus

0 commit comments

Comments
 (0)