DEV Community

Cover image for Docker for Beginners
Shriyaaa.10
Shriyaaa.10

Posted on

Docker for Beginners

Docker is a tool that helps developers build, ship, and run applications inside containers. Containers are like small, portable boxes that hold everything needed for an app to run, including the code, runtime, libraries, and settings. This makes it easier to develop and deploy applications because they will work the same way on different computers. Docker ensures that once an application is built, it can be run anywhere without any compatibility issues.

Why Use Docker?

1. Consistency Across Environments: Docker ensures that your application runs the same way regardless of where it is deployed. This eliminates the "works on my machine" problem.

2. Scalability: Containers can be easily scaled up or down to handle varying loads, making them ideal for applications with fluctuating resource requirements.

3. Efficiency: Containers are lightweight and start quickly, using fewer resources compared to traditional virtual machines.

Key Concepts

1. Image: A Docker image is a lightweight, stand-alone, and executable software package that includes everything needed to run a piece of software. It contains the code, a runtime, libraries, environment variables, and configuration files.

2. Container: A container is a running instance of a Docker image. It is an isolated environment where applications run.

3. Dockerfile: This is a text file that contains instructions for building a Docker image. It specifies the base image to use, application code, dependencies, and commands to run.

4. Docker Hub: A cloud-based repository where Docker images are stored and shared. You can pull images from Docker Hub to use in your projects.

Getting Started with Docker

1. Install Docker: Docker can be installed on various operating systems including Windows, macOS, and Linux. You can download the Docker Desktop application from the Docker website.

2. Run Your First Container: After installing Docker, you can run a container using a pre-built image from Docker Hub. Open your terminal and type:

docker run hello-world
Enter fullscreen mode Exit fullscreen mode

This command downloads the hello-world image and runs a container, which prints a confirmation message.

3. Create a Dockerfile: Create a simple Dockerfile to define a custom image:

# Use an official Python runtime as a base image
FROM python:3.8-slim-buster

# Set the working directory in the container
WORKDIR /app

# Copy the current directory contents into the container at /app
COPY . /app

# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Make port 80 available to the world outside this container
EXPOSE 80

# Define environment variable
ENV NAME World

# Run app.py when the container launches
CMD ["python", "app.py"]

Enter fullscreen mode Exit fullscreen mode

This Dockerfile uses a Python base image, sets up the working directory, copies the application code, installs dependencies, and specifies the command to run the application.

4. Build and Run Your Image:
Build the Docker image using the Dockerfile:

docker build -t my-python-app .
Enter fullscreen mode Exit fullscreen mode

Run the container from your image:

docker run -p 4000:80 my-python-app
Enter fullscreen mode Exit fullscreen mode

This maps port 80 in the container to port 4000 on your host machine, making your application accessible at http://localhost:4000.

Basic Docker Commands

1. docker ps: Lists running containers.
2. docker images: Lists all Docker images on your system.
3. docker stop : Stops a running container.
4. docker rm : Removes a container.
5. docker rmi : Removes a Docker image.

Docker is like a magic box for developers. It makes building and running apps super easy.

Top comments (0)