Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trobert42/inception
Setup a docker compose that run hand-made images of Wordpress, MariaDB and Nginx
https://github.com/trobert42/inception
docker docker-compose mariadb nginx sysadmin wordpress
Last synced: 9 days ago
JSON representation
Setup a docker compose that run hand-made images of Wordpress, MariaDB and Nginx
- Host: GitHub
- URL: https://github.com/trobert42/inception
- Owner: trobert42
- Created: 2023-08-30T12:52:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-26T12:51:50.000Z (9 months ago)
- Last Synced: 2024-02-26T13:43:03.486Z (9 months ago)
- Topics: docker, docker-compose, mariadb, nginx, sysadmin, wordpress
- Language: Dockerfile
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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 | |## Prerequisite
To run the project, you have to install __docker-compose and docker__.
## Usage
```bash
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.