From e581cda08142adc81a074049eeeb9bbe0e07e0e5 Mon Sep 17 00:00:00 2001 From: Tim Bazuin Date: Sat, 3 Aug 2019 13:19:53 +0200 Subject: [PATCH] fixed the check that sees if a ca.crt is present so it actually checks the right file --- docker/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 93fbcd2..3065bd3 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -5,6 +5,6 @@ echo 'extension=sqlite3.so' >> /etc/php/php.ini test -d vendor || ./bin/setup_web test -d storage/ca || mkdir storage/ca -test -d ca.crt || ./bin/setup +test -f storage/ca/ca.crt || ./bin/setup php -S 0.0.0.0:80 -t public public/index.php