Creating your first Docker Image

Creating a Docker image may seem complicated but is it? Let's dive in and containerize a simple apache website using Docker.

Creating your first Docker Image

Docker is a popular containerization tool that enables developers to build and run applications in a consistent, portable, and scalable environment. Docker images are the basic building blocks of the Docker ecosystem, and they can be used to create containers that run applications. In this guide, I will walk you through the process of creating a simple website and containerizing it using Docker.

Install Docker

Before you begin, make sure you have Docker installed on your system. You can download and install Docker from the official website: https://docs.docker.com/get-docker/

sudo apt update
sudo apt upgrade
sudo curl -sSL https://get.docker.com | sh

sudo systemctl start docker
sudo systemctl enable docker

Step 1: Set Up Your Project

  1. Create a Project Directory: Start by creating a directory for your project. This is where you'll store your website's files and Docker-related configuration.
  2. Create Website Files: In your project directory, create a simple HTML file named index.html with some content. For example:
<!DOCTYPE html>
<html>
<head>
    <title>My Dockerized Website</title>
</head>
<body>
    <h1>Hello, Docker!</h1>
    <p>This is my first Dockerized Apache website.</p>
</body>
</html>

Step 2: Create a Dockerfile

A Dockerfile is a text file that contains instructions to build a Docker image.

  1. Create Dockerfile: In your project directory, create a file named Dockerfile (without any file extensions).
  2. Edit Dockerfile: Open the Dockerfile in a text editor and add the following lines:
# Use the official Apache image as the base image
FROM httpd:latest

# Copy your website files into the container's web root
COPY ./index.html /usr/local/apache2/htdocs/

Step 3: Build the Docker Image

  1. Open Terminal: Open a terminal or command prompt on your machine.
  2. Navigate to Project Directory: Use the cd command to navigate to your project directory where the Dockerfile is located.
  3. Build the Image: Run the following command to build the Docker image. Replace "my-docker-website" with your desired image name and tag:
docker build -t my-docker-website .

Step 4: Test the Docker Image Locally

  1. Run the Container: After the image is built, you can run a container using the image with the following command:
docker run -d -p 8080:80 my-docker-website

Access the Website: Open a web browser and navigate to http://host.ip:8080 to see your Apache website running inside the Docker container.

Video Tutorial

Final Notes and Thoughts

That's it! You have successfully created a Docker image. Not too difficult huh? This is just a basic example, but the same principles apply to more complex Docker images and applications. This should be enough to get you started on learning more complex setups, dependencies, and configurations.