Skip to content

Latest commit

ย 

History

History
33 lines (21 loc) ยท 1.02 KB

File metadata and controls

33 lines (21 loc) ยท 1.02 KB

Inception - System Administration with Docker ๐Ÿณ

๐Ÿ“˜ Project overview

The Inception project is part of 42's curriculum and focuses on Docker containerization. The goal is to set up an infrastructure with several services, such as an Nginx web server, WordPress, and MariaDB, all running inside Docker containers managed by Docker Compose.

๐Ÿ› ๏ธ Features

  • Multi-container Docker architecture.
  • Nginx server configuration for serving WordPress.
  • WordPress installation connected to MariaDB.
  • Persistent volumes for data storage.
  • Docker Compose orchestration.

โš™๏ธ Installation

clone the project

git@github.com:Fpalumbo42/inception.git

build with the Makefile

make

Access the WordPress site in your browser at https://localhost

๐Ÿ–ฅ๏ธ Technologies Used

  • Docker: Container platform for packaging services.
  • Docker Compose: To manage multi-service applications.
  • Nginx: Web server to serve WordPress.
  • WordPress: Content Management System (CMS).
  • MariaDB: SQL database for WordPress data storage.