snipe-it/docker/startup.sh

66 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-03-25 01:18:05 -07:00
# fix key if needed
2016-05-14 15:43:46 -07:00
if [ -z "$APP_KEY" ]
2016-03-25 01:18:05 -07:00
then
2016-05-14 15:43:46 -07:00
echo "Please re-run this container with an environment variable \$APP_KEY"
echo "An example APP_KEY you could use is: "
/var/www/html/artisan key:generate --show
2016-05-14 15:43:46 -07:00
exit
2016-03-25 01:18:05 -07:00
fi
2016-05-14 15:43:46 -07:00
if [ -f /var/lib/snipeit/ssl/snipeit-ssl.crt -a -f /var/lib/snipeit/ssl/snipeit-ssl.key ]
2016-03-25 01:18:05 -07:00
then
a2enmod ssl
else
a2dismod ssl
fi
2016-05-14 15:43:46 -07:00
# create data directories
2018-09-11 04:07:45 -07:00
for dir in \
'data/private_uploads' \
'data/uploads/accessories' \
'data/uploads/avatars' \
'data/uploads/barcodes' \
'data/uploads/categories' \
'data/uploads/companies' \
'data/uploads/components' \
'data/uploads/consumables' \
'data/uploads/departments' \
'data/uploads/locations' \
'data/uploads/manufacturers' \
'data/uploads/models' \
'data/uploads/suppliers' \
'dumps' \
'keys'
do
[ ! -d "/var/lib/snipeit/$dir" ] && mkdir -p "/var/lib/snipeit/$dir"
2016-05-14 15:43:46 -07:00
done
chown -R docker:root /var/lib/snipeit/data/*
chown -R docker:root /var/lib/snipeit/dumps
chown -R docker:root /var/lib/snipeit/keys
# Fix php settings
if [ -v "PHP_UPLOAD_LIMIT" ]
then
echo "Changing upload limit to ${PHP_UPLOAD_LIMIT}"
sed -i "s/^upload_max_filesize.*/upload_max_filesize = ${PHP_UPLOAD_LIMIT}M/" /etc/php/*/apache2/php.ini
fi
# If the Oauth DB files are not present copy the vendor files over to the db migrations
2018-09-11 04:07:45 -07:00
if [ ! -f "/var/www/html/database/migrations/*create_oauth*" ]
then
cp -ax /var/www/html/vendor/laravel/passport/database/migrations/* /var/www/html/database/migrations/
fi
2016-05-14 15:43:46 -07:00
exec supervisord -c /supervisord.conf
php artisan migrate --force
php artisan config:clear
php artisan config:cache
. /etc/apache2/envvars
2016-03-25 01:18:05 -07:00
exec apache2 -DNO_DETACH < /dev/null