From 1f647857197d30b7feb34d358c411d94dcf42b3d Mon Sep 17 00:00:00 2001 From: emrullahardc Date: Tue, 13 Jun 2023 01:21:28 +0300 Subject: [PATCH] Update entrypoint.sh --- docker/entrypoint.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 0b1f9ad6a..309e069ba 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -19,10 +19,8 @@ fi role=${CONTAINER_ROLE:-app} if [ "$role" = "app" ]; then - if [ "$INSTALLED" = "false" ]; then echo ".env installed is false starting installing" php artisan install --ready - fi exec docker-php-entrypoint "$@" elif [ "$role" = "queue" ]; then echo "Running the queue ... " @@ -30,4 +28,4 @@ elif [ "$role" = "queue" ]; then elif [ "$role" = "websocket" ]; then echo "Running the websocket server ... " php artisan websockets:serve -fi \ No newline at end of file +fi