make sure app_key is issued
This commit is contained in:
+2
-2
@@ -12,7 +12,7 @@ services:
|
|||||||
expose:
|
expose:
|
||||||
- "9000"
|
- "9000"
|
||||||
volumes:
|
volumes:
|
||||||
- .:/var/www/app
|
- .:/var/www/app:delegated
|
||||||
depends_on:
|
depends_on:
|
||||||
- mysql
|
- mysql
|
||||||
networks:
|
networks:
|
||||||
@@ -26,7 +26,7 @@ services:
|
|||||||
- "${APP_PORT:-8000}:80"
|
- "${APP_PORT:-8000}:80"
|
||||||
volumes:
|
volumes:
|
||||||
- ./docker/nginx.conf:/etc/nginx/conf.d/default.conf
|
- ./docker/nginx.conf:/etc/nginx/conf.d/default.conf
|
||||||
- .:/var/www/app
|
- .:/var/www/app:delegated
|
||||||
depends_on:
|
depends_on:
|
||||||
- app
|
- app
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
@@ -3,26 +3,26 @@
|
|||||||
cd /var/www/app
|
cd /var/www/app
|
||||||
|
|
||||||
echo "====================== Running entrypoint script... ====================== "
|
echo "====================== Running entrypoint script... ====================== "
|
||||||
|
|
||||||
if [ ! -f ".env" ]; then
|
if [ ! -f ".env" ]; then
|
||||||
echo " > Ope, gotta create an .env file!"
|
echo " > Ope, gotta create an .env file!"
|
||||||
|
|
||||||
cp .env.example .env
|
cp .env.example .env
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ( ! grep -q "^APP_KEY=" ".env" || grep -q "^APP_KEY=$" ".env"); then
|
|
||||||
echo " > Ah, APP_KEY is missing in .env file. Generating a new key!"
|
|
||||||
|
|
||||||
/usr/local/bin/php artisan key:generate
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "====================== Checking for updates... ====================== "
|
echo "====================== Checking for updates... ====================== "
|
||||||
/usr/bin/git pull
|
/usr/bin/git pull
|
||||||
|
|
||||||
echo "====================== Installing Composer dependencies... ====================== "
|
echo "====================== Installing Composer dependencies... ====================== "
|
||||||
/usr/local/bin/composer install
|
/usr/local/bin/composer install
|
||||||
|
|
||||||
echo "====================== Install NPM dependencies and build frontend... ====================== "
|
echo "====================== Validating environment... ====================== "
|
||||||
|
if ( ! grep -q "^APP_KEY=" ".env" || grep -q "^APP_KEY=$" ".env"); then
|
||||||
|
echo " > Ah, APP_KEY is missing in .env file. Generating a new key!"
|
||||||
|
|
||||||
|
/usr/local/bin/php artisan key:generate --force
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "====================== Installing NPM dependencies and building frontend... ====================== "
|
||||||
/usr/bin/npm install
|
/usr/bin/npm install
|
||||||
/usr/bin/npm run build
|
/usr/bin/npm run build
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user