websockets
parent
f1232be0e9
commit
c6b9df7773
|
@ -23,6 +23,7 @@ ENV PHPVER=7.4
|
||||||
COPY --from=builder /var/www /var/www
|
COPY --from=builder /var/www /var/www
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
COPY worker-entrypoint.sh /worker-entrypoint.sh
|
COPY worker-entrypoint.sh /worker-entrypoint.sh
|
||||||
|
COPY websockets-entrypoint.sh /websockets-entrypoint.sh
|
||||||
COPY wait-for-db.php /wait-for-db.php
|
COPY wait-for-db.php /wait-for-db.php
|
||||||
RUN apt-install php${PHPVER}-curl php${PHPVER}-zip php${PHPVER}-bcmath php${PHPVER}-intl php${PHPVER}-mbstring php${PHPVER}-xml optipng pngquant jpegoptim gifsicle ffmpeg php${PHPVER}-imagick php${PHPVER}-gd php${PHPVER}-redis php${PHPVER}-mysql php${PHPVER}-pgsql &&\
|
RUN apt-install php${PHPVER}-curl php${PHPVER}-zip php${PHPVER}-bcmath php${PHPVER}-intl php${PHPVER}-mbstring php${PHPVER}-xml optipng pngquant jpegoptim gifsicle ffmpeg php${PHPVER}-imagick php${PHPVER}-gd php${PHPVER}-redis php${PHPVER}-mysql php${PHPVER}-pgsql &&\
|
||||||
a2enmod rewrite &&\
|
a2enmod rewrite &&\
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
#!/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 migrate:status | grep No && migrations=yes || migrations=no
|
||||||
|
if [ $migrations = "yes" ];
|
||||||
|
then
|
||||||
|
echo "Database needs migrations, exiting..."
|
||||||
|
sleep 5
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
gosu www-data php artisan websockets:serve
|
Loading…
Reference in New Issue