Files
DatBrowser/dockerEntryPoint.sh
Matthias Guillitte 1c3c4b1257
All checks were successful
Push image to registry / build-image (push) Successful in 3m46s
Cache when running
2025-02-08 11:16:40 +01:00

14 lines
361 B
Bash

#!/bin/sh
# Migrate the database
php ./artisan migrate --force
# Cache
php ./artisan optimize:clear && php ./artisan optimize
# Queue worker
php ./artisan queue:work --queue=high,default --tries=3 --timeout=90 --sleep=3 --daemon --no-interaction &
# Start all of the server sumulataneously
php ./artisan serve --no-interaction -vvv --port=80 --host=0.0.0.0