Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kaviara-14/dockerize-a-django-application


https://github.com/kaviara-14/dockerize-a-django-application

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

# Dockerize-a-Django-Application

This repository contains a Docker setup for a Django application, allowing you to easily build and deploy your Django project within a containerized environment.

### 1. Build the Docker Image

Build the Docker image using the provided Dockerfile

docker build -t my-django-app .

### 2. Run the Docker container
Once the image is built, you can run the Django app inside a Docker container:

docker run -p 8080:8000 my-django-app

### 3. Access the Application
Your Django application will be running at

http://localhost:8080

![Screenshot 2024-09-07 110421](https://github.com/user-attachments/assets/056a571a-a9eb-4038-95fd-4980c530779d)