Re: django in docker

2016-07-06 Thread Larry Martell
I ended up fixed it. Turned out one of the dirs in the path was not readable. That is, the django app was in /foo/bar/baz and although /foo and /foo/bar/baz were readable, /foo/bar was not. Once I chmod-ed that all was well. On Tue, Jul 5, 2016 at 7:13 PM, Josh Crompton wrote: > Rather than makin

Re: django in docker

2016-07-05 Thread Josh Crompton
Rather than making everything world-readable, I usually create a user and chown all the directories to that user. Can you post your Dockerfile? On Wed, Jul 6, 2016 at 5:28 AM, Larry Martell wrote: > I am trying to run nginx/uwsgi/django in a docker container. If I > mount the dir with my django