diff --git a/Dockerfile b/Dockerfile index de571ec..a2935bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN set -xe;\ FROM reg.zknt.org/zknt/debian-php COPY --from=builder /var/www /var/www COPY entrypoint.sh /entrypoint.sh +COPY worker-entrypoint.sh /worker-entrypoint.sh COPY wait-for-db.php /wait-for-db.php RUN apt-install php-curl php-zip php-bcmath php-intl php-mbstring php-xml optipng pngquant jpegoptim gifsicle ffmpeg php-imagick php-gd php-redis php-mysql &&\ a2enmod rewrite &&\ diff --git a/worker-entrypoint.sh b/worker-entrypoint.sh new file mode 100755 index 0000000..a07ad0a --- /dev/null +++ b/worker-entrypoint.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +set -xeo pipefail + +php /wait-for-db.php + +if [[ ! -e storage/.docker.init ]]; +then + echo "Database is not initialized yet, exiting..." + sleep 5 + exit 1 +fi + +gosu www-data php artisan horizon