Kaynağa Gözat

Run pixelfed update tasks upon startup

kaiyou 6 yıl önce
ebeveyn
işleme
37713f33d0
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. 3 0
      contrib/docker/start.sh

+ 3 - 0
contrib/docker/start.sh

@@ -8,6 +8,9 @@ php artisan storage:link
 # Migrate database if the app was upgraded
 # Migrate database if the app was upgraded
 php artisan migrate --force
 php artisan migrate --force
 
 
+# Run other specific migratins if required
+php artisan update
+
 # Run a worker if it is set as embedded
 # Run a worker if it is set as embedded
 if [ $HORIZON_EMBED = true ]; then
 if [ $HORIZON_EMBED = true ]; then
 	php artisan horizon &
 	php artisan horizon &