DEV Community
dev.to › francescoxx › python-crud-rest-api-using-django-postgres-docker-and-docker-compose-4nhe
Python CRUD Rest API, using: Django, Postgres, Docker and Docker Compose - DEV Community
April 12, 2023 - By doing so, we can run the django.sh file when the container starts, with all the necessary instructions. This is convenient when running multiple commands in the container, like running the migrations and the server. The docker-compose.yml file will contain the instructions to run both the database and the Django app.
Videos
Dockerizing Your Django Rest Framework Project: Best ...
You need to learn how to dockerize a Django REST API. NOW ...
02:24:50
Deploying Django with Docker Compose - YouTube
26:58
Creating Django App on Docker - YouTube
33:02
Tutorial Docker + Django en español - YouTube
39:10
Prepare a Django app for Deployment using Docker - YouTube
Udemy
udemy.com › it & software › other it & software › django
No Shortcuts Guide to Django RESTful APIs with Docker | Udemy
You should be familiar with the basic concepts surrounding shell scripts, Docker,API's and Django. Hi, welcome to this course on building a production ready, detailed Django REST API, running on a web server powered by NGINX, on a custom domain name and served securely over HTTPS with SSL Certificates from Letsencrypt.
Readthedocs
dockertraining.readthedocs.io › en › latest › django
Dockerizing Django DRF Real World Application — Docker Training 0.0.1 documentation
docker run -d -p 8080:8000 -v src:/drf_src --name django_drf_app django_drf · If docker run is successful, open your browser and access your API or application. You should be able to access it at 127.0.0.1:8080/admin.
Docker Hub
hub.docker.com › r › kstromeiraos › django-rest-framework
kstromeiraos/django-rest-framework - Docker Image
Django and Django REST framework image to create, manage and deploy Django apps easily.
GitHub
github.com › Jeb4dev › django-rest-api
GitHub - Jeb4dev/django-rest-api: Simple REST API built with Django REST Framework and containerized with Docker.
This is simple Django REST API build with Django REST Framework. It is dockerized using docker-compose.
Starred by 2 users
Forked by 3 users
Languages Python 98.6% | Dockerfile 1.4% | Python 98.6% | Dockerfile 1.4%
GitHub
github.com › minhng92 › django-rest-example-docker
GitHub - minhng92/django-rest-example-docker: Django using REST framework plugin with Docker
$ docker-compose up -d · Go to http://localhost:8000 to browse public RESTful APIs · Django Admin: http://localhost:8000/admin ·
Starred by 3 users
Forked by 6 users
Languages Python 98.5% | Dockerfile 1.5% | Python 98.5% | Dockerfile 1.5%
GitHub
github.com › yannikmesserli › django-rest-framework-docker
GitHub - yannikmesserli/django-rest-framework-docker
docker-compose up -d docker-compose run restapi python manage.py migrate docker-compose run restapi python manage.py createsuperuser · Then, django rest framwork will be available at docker-machine ip [your machine] on port 8000.
Starred by 34 users
Forked by 18 users
Languages Python 96.2% | Dockerfile 3.8% | Python 96.2% | Dockerfile 3.8%
Medium
medium.com › @tahawarihsan › dockerizing-a-django-application-a-step-by-step-guide-e538e8b9bf22
Dockerize Django and Create REST APIs: A Step-by-Step Guide | by Tahawarihsan | Medium
June 24, 2024 - Enter the URL: http://localhost:8000/api/books/. Go to the Body tab, select raw, and choose JSON. ... Click on Send. ... By following this guide, you’ve learned how to dockerize a Django application and create REST APIs using Django REST framework. Additionally, you tested your APIs using Postman.
Dragon Programmer
dragonprogrammer.com › home » › development » › dockerized django back-end api with angular front-end tutorial (part 1)
Dockerized Django Back-end API with Angular Front-end Tutorial (Part 1) | Dragon Programmer
July 26, 2019 - In this multipart tutorial, you will learn how to build a production-ready REST API using Python and the Django REST Framework (DRF). You will interact with the API using an Angular app as the front-end layer. We will also cover authentication and deploying the stack as a Docker container in a “live” production environment.
Udemy
udemy.com › development › web development › django
Django Rest Framework with Docker: A Practical Guide | Udemy
How to create APIs with Django Rest Framework · Use Docker · Create protected routes · Login with HttpOnly Cookies · Use APIViews, ViewSets, Generic API Views · Authorize users for different routes · Upload Images · Export CSV files · If these are what you are looking for then this course is for you.
Docker Community
forums.docker.com › docker desktop
How to install the django rest framework on docker - Docker Desktop - Docker Community Forums
May 24, 2019 - I have installed the following 3rd party libraries using the requirements.txt. The content of the file is: FROM python:3.7-slim # Set environment varibles ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 # Set work directory WORKDIR /airproject # Install dependencies COPY requirements.txt /airproject/requirements RUN pip install -r /airproject/requirements # Copy project COPY .