Re: Django inside Docker

2016-06-06 Thread Davi Diório Mendes
Ezequiel helped me at hangouts. at settings.py I had: TEMPLATES: [ { [...] 'DIRS': ['templates'] [...] }, ] and as Ezequiel said, is better to use: 'DIRS': [os.path.join(BASE_DIR, 'templates')] now everything is working, Thank you Ezequiel, and everyone t

Re: Django inside Docker

2016-06-06 Thread Davi Diório Mendes
Hi, sorry the late response Ezequiel, this docker will run on an IBM PowerPC and there is no base image ready to ppc64 architecture. Soon this dockerfile will be ported to ppc64. Akhil, I use this snippet to run the image docker run -d --name ltc-client \ -v $(PROJ_HOME)/client:/home/cli

Django inside Docker

2016-06-03 Thread Davi Diório Mendes
Hi everyone, I was developing with django localy, in my laptop, and my manager asked to project run inside a docker. I did and now django can't find my templates :( I appreciate any help, my Dockerfile is attached. BR. -- You received this message because you are subscribed to the Google Gro