https://github.com/hex01e/inception
Inception is a system administration project aimed at setting up a virtualized infrastructure using Docker. The project uses docker-compose to orchestrate multiple containers, each serving a specific service. It provides a hands-on learning experience in Dockerization and system configuration.
https://github.com/hex01e/inception
cadvisor css docker docker-compose dockerfile ftp html nginx shell wordpress
Last synced: 2 months ago
JSON representation
Inception is a system administration project aimed at setting up a virtualized infrastructure using Docker. The project uses docker-compose to orchestrate multiple containers, each serving a specific service. It provides a hands-on learning experience in Dockerization and system configuration.
- Host: GitHub
- URL: https://github.com/hex01e/inception
- Owner: hex01e
- Created: 2024-07-24T06:24:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-14T21:44:13.000Z (over 1 year ago)
- Last Synced: 2025-01-27T18:50:15.498Z (over 1 year ago)
- Topics: cadvisor, css, docker, docker-compose, dockerfile, ftp, html, nginx, shell, wordpress
- Language: Dockerfile
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Inception
## Overview
**Inception** is a system administration project aimed at setting up a virtualized infrastructure using Docker. The project uses `docker-compose` to orchestrate multiple containers, each serving a specific service. It provides a hands-on learning experience in Dockerization and system configuration.
## Features
- **Core Services**:
- **NGINX**: Acts as a reverse proxy with TLSv1.2/1.3 support.
- **WordPress + php-fpm**: Hosts a WordPress site.
- **MariaDB**: Serves as the database backend for WordPress.
- **Volumes**:
- Stores WordPress database files.
- Stores WordPress site files.
- **Network**: Custom Docker network securely connects all services.
- **Resilience**: Containers automatically restart upon crashes.
## Bonus Features
- **Redis Cache**: Improves WordPress performance by managing cached data effectively.
- **FTP Server**: Provides file transfer capabilities to the WordPress volume.
- **Static Website**: Deploy a static web site (html, css and js).
- **Adminer**: Simplifies MariaDB database management.
- **cAdvisor**: is included to monitor and analyze resource usage and performance of running containers.
## Requirements
- **Docker & Docker Compose**: Orchestrates and manages the containers.
- **Environment Variables**:
- Configuration data is managed using a `.env` file.
- Sensitive data (e.g., passwords, API keys) is securely stored using Docker secrets.
## Project strecture:
```
inception
├── Makefile
├── srcs/
│ ├── .env
│ ├── docker-compose.yml
│ └── requirements/
│ ├── mariadb/
│ │ └── ...
│ ├── nginx/
│ │ └── ...
│ └── wordpress/
│ │ └── ...
│ └── bonus/
│ └── adminer
│ └── ...
│ └── ftp
│ └── ...
│ └── cadvisor
│ └── ...
│ └── redis
│ └── ...
│ └── website
│ └── ...
```
## Setup Instructions
Clone the repository and make:
```bash
git clone https://github.com/hex01e/inception
cd inception
make
```