From 72fb588a0133d09a089469b39a93222f50dd9418 Mon Sep 17 00:00:00 2001 From: krzysztofrewak Date: Wed, 27 Mar 2024 13:24:22 +0100 Subject: [PATCH] #405 - docker-compose to docker compose --- setup | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/setup b/setup index 7e8b15ce..b644f95a 100644 --- a/setup +++ b/setup @@ -4,11 +4,11 @@ if [ ! -f ".env" ]; then cp .env.example .env fi -docker-compose build --no-cache --pull -docker-compose up -d -docker-compose run --rm -u "$(id -u):$(id -g)" php composer install -docker-compose run --rm -u "$(id -u):$(id -g)" php php artisan key:generate -docker-compose run --rm -u "$(id -u):$(id -g)" php php artisan storage:link -docker-compose run --rm -u "$(id -u):$(id -g)" php php artisan migrate --seed -docker-compose run --rm -u "$(id -u):$(id -g)" node npm install -docker-compose run --rm -u "$(id -u):$(id -g)" node npm run dev +docker compose build --no-cache --pull +docker compose up -d +docker compose run --rm -u "$(id -u):$(id -g)" php composer install +docker compose run --rm -u "$(id -u):$(id -g)" php php artisan key:generate +docker compose run --rm -u "$(id -u):$(id -g)" php php artisan storage:link +docker compose run --rm -u "$(id -u):$(id -g)" php php artisan migrate --seed +docker compose run --rm -u "$(id -u):$(id -g)" node npm install +docker compose run --rm -u "$(id -u):$(id -g)" node npm run dev