Revert "quiet the warning for TEST env variable in newsblur_web container"

This reverts commit 89786e3e45.
This commit is contained in:
Jonathan Math 2021-03-08 18:31:12 -05:00
parent 89786e3e45
commit 9cea89a5ab

View file

@ -24,7 +24,7 @@ services:
expose:
- '8000'
# only use gunicorn if the TEST env variable is not "True"
command: bash -c 'if [ -z "$${TEST}" ] ; then echo "starting test env"; else gunicorn --bind :8000 newsblur_web.wsgi:application; fi'
command: bash -c 'if [[ -z "${TEST}" && "${TEST}" = "True" ]] ; then echo "starting test env"; else gunicorn --bind :8000 newsblur_web.wsgi:application; fi'
volumes:
- app-files:/srv/newsblur
nginx: