Files
DatBrowser/dockerEntryPoint.sh
Matthias Guillitte 51eafce03a
Some checks failed
Push image to registry / build-image (push) Failing after 7m39s
Changed queue worker
2025-02-20 19:22:38 +01:00

14 lines
293 B
Bash

#!/bin/sh
# Migrate the database
php ./artisan migrate --force
# Cache
php ./artisan optimize:clear && php ./artisan optimize
# Queue worker
supervisorctl start "laravel-worker:*"
# Start all of the server sumulataneously
php ./artisan serve --no-interaction -vvv --port=80 --host=0.0.0.0