This is a template for a Docker container that can be used to run a Django application. The Django project is located in the src directory. The Docker container is built using the Dockerfile in the root directory.
To get started with this template, follow these steps:
-
Clone the repository:
git clone <repository-url> cd <repository-directory>
-
Build the Docker image:
docker build -t django-template . -
Run the Docker container:
docker run -p 8000:8000 django-template
-
Access the Django application at
http://localhost:8000.
src/: Contains the Django project.Dockerfile: Used to build the Docker image.
To customize the Django application, modify the files in the src directory and rebuild the Docker image.
This project is licensed under the MIT License.