djangodocker
djangodocker copied to clipboard
A sample Django project to dockerize
Use a more recent PostgreSQL version and fix the UTC error in latest psycopg2 versions (see https://stackoverflow.com/questions/68024060/assertionerror-database-connection-isnt-set-to-utc)
Using a recent psycopg2 version will fix this behaviour: https://github.com/ErnstHaagsman/djangodocker/issues/9
There is a known issue with the used psycopg2 version which will generate errors like: ``` lib/python3.6/site-packages/psycopg2/.libs/libresolv-2-c4c53def.5.so: symbol __res_maybe_init, version GLIBC_PRIVATE not defined in file libc.so.6 with link time reference...
Bumps [django](https://github.com/django/django) from 1.11.3 to 2.2.24. Commits 2da029d [2.2.x] Bumped version for 2.2.24 release. f27c38a [2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses. 053cc95 [2.2.x] Fixed CVE-2021-33203 --...
Hi, psycopg2 library have some issues and is causing crush during docker container stand up. I changed version of psycopg2 to newest (2.8.4) and it helped.
I forked this project, after finding your name in [an image](https://www.jetbrains.com/pycharm/whatsnew/img/2017.2/Docker-Compose-Windows.jpg) on the "WHAT’S NEW IN PYCHARM 2017.2" page on Jetbrains.com, because I wanted to finally get Docker working on...
This is for anyone else who gets stuck on Windows + Docker + this project: If you get above mentioned error because Docker runs on VirtualBox on Windows, make sure...