mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2025-12-31 19:47:25 +01:00
92 lines
2.8 KiB
Bash
Executable File
92 lines
2.8 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
|
|
in_log() {
|
|
local type="$1"; shift
|
|
printf '%s [%s] [Entrypoint]: %s\n' "$(date -u '+%Y-%m-%dT%H:%M:%SZ')" "$type" "$*"
|
|
}
|
|
|
|
docker_process_init_files() {
|
|
echo
|
|
local f
|
|
for f; do
|
|
case "$f" in
|
|
*.sh)
|
|
# https://github.com/docker-library/postgres/issues/450#issuecomment-393167936
|
|
# https://github.com/docker-library/postgres/pull/452
|
|
if [ -x "$f" ]; then
|
|
in_log INFO "$0: running $f"
|
|
"$f"
|
|
else
|
|
in_log INFO "$0: sourcing $f"
|
|
. "$f"
|
|
fi
|
|
;;
|
|
*) in_log INFO "$0: ignoring $f" ;;
|
|
esac
|
|
echo
|
|
done
|
|
}
|
|
|
|
# Create directories if they don't exist
|
|
mkdir -p \
|
|
/var/www/html/storage/app/public \
|
|
/var/www/html/storage/framework/cache \
|
|
/var/www/html/storage/framework/sessions \
|
|
/var/www/html/storage/framework/views \
|
|
/var/www/html/storage/logs \
|
|
/var/www/html/public/storage
|
|
|
|
# Set directory permissions without changing ownership
|
|
chmod -R 775 \
|
|
/var/www/html/storage \
|
|
/var/www/html/bootstrap/cache \
|
|
/var/www/html/public/storage
|
|
|
|
chown -R www-data:www-data /var/www/html/storage
|
|
|
|
# Ensure symlink for storage/app/public
|
|
if [ ! -L /var/www/html/public/storage ]; then
|
|
echo "Creating symlink for storage/app/public..."
|
|
ln -sfn /var/www/html/storage/app/public /var/www/html/public/storage
|
|
fi
|
|
|
|
# Clean the existing public/ directory but exclude .js and .css files
|
|
if [ -d /var/www/html/public ]; then
|
|
echo "Cleaning up stale files in public/ directory, retaining .js and .css files..."
|
|
find /var/www/html/public -type f ! -name '*.js' ! -name '*.css' -exec rm -f {} \;
|
|
fi
|
|
|
|
# Copy the public/ directory from the image to the mounted volume
|
|
echo "Copying public/ directory from image to volume..."
|
|
cp -r /image-original/public/* /var/www/html/public/
|
|
|
|
|
|
# Clear and cache config in production
|
|
if [ "$APP_ENV" = "production" ]; then
|
|
gosu www-data php artisan config:cache
|
|
gosu www-data php artisan optimize
|
|
gosu www-data php artisan package:discover
|
|
gosu www-data php artisan migrate --force
|
|
|
|
echo "Checking initialization status..."
|
|
|
|
# If first IN run, it needs to be initialized
|
|
echo "Checking initialization status..."
|
|
IN_INIT=$(php artisan tinker --execute='echo Schema::hasTable("accounts") && !App\Models\Account::all()->first();')
|
|
echo "IN_INIT value: $IN_INIT"
|
|
|
|
if [ "$IN_INIT" = "1" ]; then
|
|
echo "Running initialization scripts..."
|
|
docker_process_init_files /docker-entrypoint-init.d/*
|
|
fi
|
|
|
|
echo "Production setup completed"
|
|
echo "IN_INIT value: $IN_INIT"
|
|
|
|
fi
|
|
|
|
echo "Starting supervisord..."
|
|
# Start supervisord in the foreground
|
|
exec /usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf |