reading-notes


Project maintained by will-ing Hosted on GitHub Pages — Theme by mattgraham

Django REST

Docker

Docker is a way to isolate and run entire applications. You can use any OS when using docker.

The downside to Docker is its complexity under the hood.

Docker Compose is an additional tool that is automatically included with Mac and Windows downloads of Docker

For Linux you can use:

  1. sudo pip install docker-compose
  2. docker run hello-world

Image layering exists for two main reasons. First, each image layer is immutable–unchanged–like a git commit. The second reason is performance.

The order in a Dockerfile matters a lot.


Django REST

Django REST Framework works alongside the Django web framework to create web APIs.

Main Page