docker-django-example icon indicating copy to clipboard operation
docker-django-example copied to clipboard

A production ready example Django app that's using Docker and Docker Compose.

Results 8 docker-django-example issues
Sort by recently updated
recently updated
newest added

The error in #9 occurs under Ubuntu 20, and likely similar platforms enforcing non-root write privileges for the active user, due to hardcoded uid 1000 in the container images pulled...

cookiecutter-django includes sentry and mailhog for development. Perhaps these could be included in your setup?

Hi @nickjj, thank you for making this repository. I would have a look at this repo for my reference. I'm looking for a Django project example that uses connection pooling...

Really enjoying the quality of this, I was wondering if it'd be handy to have a `LOG_LEVEL` env var (detached from `DEBUG`) that would allow Django to output logs when...

Problem: Whenever I install packages from the requirements.txt file, it shows the error. Solution: After Changing the psycopg2 to psycopg2-binary the problem is fixed. OS: Mac ~$ pip3 install -r...

I have added healthchecks for postgres, redis and celery worker. The `depends_on` condition for postgres and redis has been changed from `service_started` to `service_healthy` to ensure the services are healthy...

Hi, I'm able to run the code using the great ./run command but how would I go about using VScode to debug step by step? Thanks

`./run psql` command now connects to database that has been set in `.env`. By default the postgres image uses `POSTGRES_USER` as db name if `POSTGRES_DB` is not specified and likewise...