https://github.com/andreyvdl/42-inception
My inception project
https://github.com/andreyvdl/42-inception
42 42inception 42saopaulo 42school docker docker-compose inception inception42 makefile
Last synced: about 2 months ago
JSON representation
My inception project
- Host: GitHub
- URL: https://github.com/andreyvdl/42-inception
- Owner: andreyvdl
- Created: 2024-02-16T14:43:41.000Z (over 2 years ago)
- Default Branch: copy
- Last Pushed: 2024-05-23T17:00:55.000Z (about 2 years ago)
- Last Synced: 2025-04-07T14:18:44.144Z (about 1 year ago)
- Topics: 42, 42inception, 42saopaulo, 42school, docker, docker-compose, inception, inception42, makefile
- Language: Dockerfile
- Homepage:
- Size: 8.35 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
## Objective
> This project aims to broaden your knowledge of system administration by using Docker. You will virtualize several Docker images, creating them in your new personal virtual machine.
```mermaid
---
title: Inception flow
---
%%{ init: { 'flowchart' : { 'curve': 'basis' } } }%%
flowchart LR
net(("internet"))
nginxMan["nginx mandatory"]
wpPHP["wordpress mandatory"]
wpDB[("wordpress database")]
mariaCont["mariadb mandatory"]
mariaDB[("mariadb database")]
redis["redis"]
FTP["FTP"]
STATIC["static website"]
ADMINER["adminer"]
EXTRA["extra service"]
nginxMan <==443===> net
net <==> STATIC
subgraph HP["HOST PC"]
subgraph DN["DOCKER NETWORK"]
mariaCont <==3306==> wpPHP
wpPHP <==9000==> nginxMan
wpPHP <==> redis
subgraph B1["BONUS"]
ADMINER
redis
FTP
STATIC
EXTRA
end
end
mariaCont <==> mariaDB
wpPHP <==> wpDB
wpDB <==> nginxMan
wpDB <==> FTP
end
style DN fill:#2496ED,color:#000
style HP fill:#888888
style net fill:#aaaaaa,color:#000
style nginxMan fill:#009639
style wpPHP fill:#21759B
style wpDB fill:#0E4268
style mariaCont fill:#003545
style mariaDB fill:#000212
style redis fill:#DC382D
style ADMINER fill:#34567C
style FTP fill:#4285F4
style STATIC fill:#E34F26
style B1 fill:#FFFF00,color:#000
linkStyle 0,2,3 color:#000
```