Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kencochrane/django-docker
Demo Django App using Docker
https://github.com/kencochrane/django-docker
Last synced: about 1 month ago
JSON representation
Demo Django App using Docker
- Host: GitHub
- URL: https://github.com/kencochrane/django-docker
- Owner: kencochrane
- License: apache-2.0
- Created: 2013-08-19T15:22:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-22T23:38:59.000Z (about 11 years ago)
- Last Synced: 2024-10-31T16:48:45.169Z (about 1 month ago)
- Language: CSS
- Size: 603 KB
- Stars: 188
- Watchers: 12
- Forks: 68
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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 /django-docker .
Running the container
$ sudo docker run -d -p :8000 /django-docker
Get your container's IP Address:sudo docker inspect | grep IPAddress | cut -d '"' -f 4
Now go to `:8000` in your browser