dockerizing-django
dockerizing-django copied to clipboard
This pull request adds the following; - Ability to switch between postgres and mysql - Ability to use a remote database e.g. Amazon, CloudSQL e.t.c - Simplifies bringing up the...
Hi there, Thank you for a great tutorial and letting us see a great code example. I always prefer to know explicitly how you would want us to use/reuse code...
**Request:** 1. Add SSL into NGINX and DB 2. Ability to kick off env's based on dev, qa, or prod 3. Upgrade to Django2 + DRF
How do you view debug output and logs from print statements or logger.debug()? `docker-compose logs web` shows gunicorn info only
Full list of changes in CHANGELOG.md Tested under Ubuntu 18.04 (I don't have access to Mac)
Thanks for this tutorial! It's very helpful. I can't figure out how to successfully run database migration after making small changes to the model though. I put details of what...
The [version 3 syntax of the compose file](https://docs.docker.com/compose/compose-file/) shares volumes between containers differently. This moves the example forward to the new syntax.
Followed the steps without any error, but when I run `docker-machine ip dev` and access that URL in my browser, I get an error page saying the website didn't send...
Hi some one have de same error first I run docker-compose build and after docker-compose up I get this error. ERROR: for django Cannot start service django: oci runtime error:...
if use volumes: in docker-compose.yml with ./web: for local mirror, the container don't start.. ``` volumes: - ./web:/usr/src/app ``` someone know how make available the volumes using docker-compose? thanks in...