Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/dev/docker/
Upload File :
Current File : /var/www/html/bookstack/dev/docker/entrypoint.app.sh

#!/bin/bash

set -e

env

if [[ -n "$1" ]]; then
    exec "$@"
else
    composer install
    wait-for-it db:3306 -t 45
    php artisan migrate --database=mysql
    chown -R www-data:www-data storage
    exec apache2-foreground
fi