https://github.com/mfunyu/inception
Level 5 project @42Tokyo
https://github.com/mfunyu/inception
42cursus docker-compose mariadb nginx wordpress
Last synced: 3 months ago
JSON representation
Level 5 project @42Tokyo
- Host: GitHub
- URL: https://github.com/mfunyu/inception
- Owner: mfunyu
- Created: 2022-03-21T05:24:28.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-25T11:55:54.000Z (about 4 years ago)
- Last Synced: 2025-01-14T10:31:19.638Z (over 1 year ago)
- Topics: 42cursus, docker-compose, mariadb, nginx, wordpress
- Language: Shell
- Homepage: https://www.notion.so/Inception-Reviewee-bb1ff70bbb374ea3802ee1fd8e72f161
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inception
[](https://github.com/JaeSeoKim/badge42)
Level 5 project @42Tokyo
Notion: [Inception Log >>>](https://www.notion.so/Inception-Reviewee-bb1ff70bbb374ea3802ee1fd8e72f161)
# Installation & Usage
### requirement
> **Docker**
> - Install: https://www.docker.com/products/docker-desktop/
### clone
```
git clone https://github.com/mfunyu/Inception.git
```
### run
```
cd Inception
make
```
# Project Overview
Set up a small infrastructure composed of different services: Nginx, Wordpress, and Mariadb
Project image Directory structure
```bash
$ tree
.
├── Makefile
└── srcs
├── docker-compose.yml
└── requirements
├── mariadb
│ ├── Dockerfile
│ └── setup.sh
├── nginx
│ ├── Dockerfile
│ └── nginx.conf
├── tools
│ ├── clean.sh
│ └── setup.sh
└── wordpress
├── Dockerfile
├── setup.sh
└── www.conf
```