This is an example mezzaniane project, generated by single mezzanine command and dockerized thanks to generated Dockerfile
- https://github.com/SpisTresci/mezzanine-docker-demo/blob/master/example-project/Dockerfile
Because docker image is uploaded to docker hub, you can download and run it with two simple commands:
docker run -d --name mezzanine_db postgres
docker run -P --name mezzanine_web -p 80:80 --link mezzanine_db:db noisy/mezzanine-docker-demo
Your dockerized mezzanine instance should be available on http://localhost/ 🎉
virtualenv mezzanine-docker-demo
source mezzanine-docker-demo/bin/activate
#pip install Mezzanine after merging PR, for now:
pip install git+https://github.com/SpisTresci/mezzanine.git@docker_support
pip install fig
mezzanine-project example-project
cd example-project/
fig up