/inception

Setup a docker compose that run hand-made images of Wordpress, MariaDB and Nginx

Primary LanguageDockerfile

Inception

This project, covering the fundamentals of Docker containers, their purpose, and necessity. It provides insights into utilizing Docker images and offers guidance on creating custom Docker images from the ground up.

Project Name inception
Description This project aims to enhance understanding of system administration through the utilization of Dockerfile for creating and managing custom images and microservices.
Technologies Docker Nginx Wordpress HTML MariaDB

Prerequisite

To run the project, you have to install docker-compose and docker.

Usage

  gcl https://github.com/trobert42/inception.git
  cd inception
  make

What is Docker ?

Docker is a virtualization tool that packages and deploys applications along with their dependencies into a software container. These containers are isolated from one another and can run on any machine running Docker software, greatly simplifying application deployment and distribution.

  • Portability: Applications can be easily deployed across different operating systems.
  • Isolation: Docker containers are isolated from each other, ensuring that each application operates independently without affecting others.
  • Automation: Scripts can be used to automate the deployment and maintenance of applications.