django-fullstack
Full stack django example project build on multiple docker containers ready for development and production.
Batteries
-
postgres(withpostgisandhstoreextensions) -
nginx -
gunicorn -
redis celeryrabbitmq
Create your own
This repository is an instance of cookiecutter-django-fullstack. Check it out to create your own django fullstack project.
Development
MacOS X
Setup
brewpip
brew install docker boot2docker
sudo pip install docker-compose
boot2docker upgrade
boot2docker init
In case of errors, try boot2docker delete && boot2docker init again.
For more details, read documentation.
Create host alias for current docker host IP with echo $(boot2docker ip) dockerhost | sudo tee -a /etc/hosts.
IP can change in future, update it in /etc/hosts if necessary.
Running
boot2docker start
$(boot2docker shellinit)
docker-compose up
- Browse to http://dockerhost/
- Or so something like
docker-compose run django python manage.py shell|migrate|collectstatic
Deployment
Docker Registry
Register your django app image (e.g. this repo) to a docker registry. E.g. quay.io, which builds your container images on git push.
- Push your repository to GitHub
- Create an account on quay.io
- Add a repository and link it to your GitHub repository
- Update
images ofdjangoandworkerintutum.ymltoquay.io/YOURUSER/YOURDJANGOPROJECT
Managed Cloud Deployment
You can deploy this app in many different ways of course. E.g. just checking it out on a server and running it with docker-compose (not recommended for production use and that's so 2014). So we use tutum.co to manage our cloud (nodes on e.g. DigitalOcean or Amazon) and deployment of our docker images.
- Create an account on tutum.co
- Create at least 1 node (e.g. on DigitalOcean). How many nodes you need and which containers are best on which nodes depends heavy on your kind of application. But you can change this later very easy thanks to tutum.co
- Update
VIRTUAL_HOSTofdjangointutum.ymltonginx.YOURDJANGOPROJECT.YOURUSER.svc.tutum.ioand use it to create a new stack on tutum.co - Start it and browse to http://nginx.YOURDJANGOPROJECT.YOURUSER.svc.tutum.io/
Todos:
- [ ] Fix code live editing in development
- [ ] how to deploy code updates right....
- [ ]
docker-compose.ymlandtutum.ymlare very similar.... - [ ] How to use a domain... and is this
vhost.dthe best way? - [ ] Add Celery test
- [ ] Add Postgis
- [ ] Try Kubernetes (with GCE)
Tipps & Tricks
- Delete all docker containers
docker rm -f $(docker ps -a -q) - Delete all docker images
docker rmi -f $(docker images -q)