Skip to content

Commit 5c0904d

Browse files
author
Michael Holmes
committed
Fix first time setup script
The script wasn’t switched from `/var/www/BookStack` to `/var/www/bookstack`
1 parent aa78639 commit 5c0904d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ echoerr() { echo "$@" 1>&2; }
77
IFS=":" read -r DB_HOST_NAME DB_PORT <<< "$DB_HOST"
88
DB_PORT=${DB_PORT:-3306}
99

10-
if [ ! -f '/var/www/BookStack/.env' ]; then
10+
if [ ! -f '/var/www/bookstack/.env' ]; then
1111
if [[ "${DB_HOST}" ]]; then
12-
cat > /var/www/BookStack/.env <<EOF
12+
cat > /var/www/bookstack/.env <<EOF
1313
# Environment
1414
APP_ENV=production
1515
APP_DEBUG=${APP_DEBUG:-false}

0 commit comments

Comments
 (0)