DEV Community

Arjun Menon
Arjun Menon

Posted on • Originally published at arjunmenon.hashnode.dev on

Dockerizing and Deploying a Django To-do app on AWS

Introduction

DevOps engineers play a pivotal role in enhancing the efficiency and reliability of software development and deployment processes. Docker, a containerization platform, has emerged as an indispensable tool in the DevOps toolkit. In this blog post, we will guide you through a Docker project tailored for DevOps engineers. This project involves creating a Dockerfile for a Django-based Todo application, building the Docker image, running the container, verifying the application's functionality, and pushing the image to a repository.

Step 1: Create an AWS EC2 Instance 🌐

  1. Navigate to the AWS Management Console.

  2. Launch an EC2 instance, choosing an Amazon Machine Image (AMI) based on your preference (e.g., Amazon Linux).

  3. Configure the instance, set up security groups to allow inbound traffic on ports 22 (SSH) and 8001 (Django application).

  4. Launch the instance and download the private key.

  5. Connect to the instance using SSH:

Step 2: Clone the Django Todo App from GitHub 🔄

Once connected to your EC2 instance, clone your Django Todo application from GitHub:

# Clone the GitHub repository
git clone https://github.com/ArjunMnn/django-todo.git

# Navigate to the project directory
cd django-todo

Enter fullscreen mode Exit fullscreen mode

Step 3: Create a Dockerfile for the Django Todo App 🐍

The next step is to craft a Dockerfile that defines the environment for our Django Todo application. Create a file named Dockerfile with the following content:

FROM python:3

RUN pip install django==3.2

COPY . .

RUN python manage.py migrate

CMD ["python","manage.py","runserver","0.0.0.0:8001"]

Enter fullscreen mode Exit fullscreen mode

This Dockerfile sets up a Python environment, installs the application dependencies, and specifies the command to run the Django Todo application.

Step 4: Build the Docker Image and Run the Container 🏗

Navigate to the directory containing your Dockerfile and application code in the terminal. Run the following commands:

# Build the Docker image
docker build . -t todo-app

# Run the Docker container
docker run -p 8001:8001 <image-id>

Enter fullscreen mode Exit fullscreen mode

These commands build the Docker image with the <image-id> and run a container based on that image, mapping port 8001 from the container to the host.

Step 5: Verify Application Functionality 👩💻

Open your web browser and navigate to http://<ipaddress>:8001, where is the appropriate IP of your remote server. You should see your application running.

This step verifies that the application is working correctly within the Docker container.

Step 6: Push the Image to a Repository

To share your Docker image or deploy it to other environments, push it to a container registry. For example, let's use Docker Hub as the repository:

# Log in to Docker Hub (replace USERNAME with your Docker Hub username)
docker login -u USERNAME

# Tag the image with your Docker Hub username and repository name
docker tag todo-app USERNAME/todo-app

# Push the image to Docker Hub
docker push USERNAME/todo-app

Enter fullscreen mode Exit fullscreen mode

Now, your Docker image is available on Docker Hub and can be pulled by others for deployment.

Conclusion

In conclusion, this Docker project for DevOps engineers guides you through the process of containerizing a Django Todo application. By creating a Dockerfile, building an image, running a container, and pushing the image to a repository, you ensure consistency and reproducibility in deploying your Django applications across different environments. 🌐

Let's connect on LinkedIn.

Top comments (0)