• Stars
    star
    188
  • Rank 205,563 (Top 5 %)
  • Language
    CSS
  • License
    Apache License 2.0
  • Created over 11 years ago
  • Updated about 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Demo Django App using Docker

django-docker

Demo Django App using Docker

Dockerfile

Use this to build a new image

$ sudo docker build .

With a tag for easier reuse

$ sudo docker build  -t <your username>/django-docker .

Running the container

$ sudo docker run -d -p :8000 <your username>/django-docker

Get your container's IP Address:

sudo docker inspect <container_id> | grep IPAddress | cut -d '"' -f 4

Now go to <your container's ip>:8000 in your browser