docker-taiga icon indicating copy to clipboard operation
docker-taiga copied to clipboard

Missing env TAIGA_SSL_BY_REVERSE_PROXY in Dockerfile

Open ArkadiuszZolnik opened this issue 6 years ago • 2 comments

When trying to build image got an error:

File "/usr/src/taiga-back/settings/docker.py", line 23, in <module>
    if os.getenv('TAIGA_SSL').lower() == 'true' or os.getenv('TAIGA_SSL_BY_REVERSE_PROXY').lower() == 'true':
AttributeError: 'NoneType' object has no attribute 'lower'

Adding to the Dockerfile ENV TAIGA_SSL_BY_REVERSE_PROXY False Solved the problem

ArkadiuszZolnik avatar May 15 '18 10:05 ArkadiuszZolnik

The hint above solved the issue in my instance, too.

anddann avatar May 16 '18 07:05 anddann

+1, this should get fixed. Adding the line to ./Dockerfile worked.

Harti avatar Jun 11 '18 21:06 Harti