diff --git a/docker-compose.test.yml b/docker-compose.test.yml index aadb2d2..db71680 100644 --- a/docker-compose.test.yml +++ b/docker-compose.test.yml @@ -1,3 +1,5 @@ +name: bogazici-api-test + services: bdc-api-test: build: diff --git a/scripts/deploy-test.sh b/scripts/deploy-test.sh index 1bacf63..c0428db 100755 --- a/scripts/deploy-test.sh +++ b/scripts/deploy-test.sh @@ -15,11 +15,10 @@ cd "$PROJECT_DIR" git config --global --add safe.directory "$PROJECT_DIR" || true -sudo chown -R "$USER":www-data storage bootstrap/cache 2>/dev/null || true -sudo find storage -type d -exec chmod 2775 {} \; 2>/dev/null || true -sudo find storage -type f -exec chmod 664 {} \; 2>/dev/null || true -sudo find bootstrap/cache -type d -exec chmod 2775 {} \; 2>/dev/null || true -sudo find bootstrap/cache -type f -exec chmod 664 {} \; 2>/dev/null || true +find storage -type d -exec chmod 2775 {} \; 2>/dev/null || true +find storage -type f -exec chmod 664 {} \; 2>/dev/null || true +find bootstrap/cache -type d -exec chmod 2775 {} \; 2>/dev/null || true +find bootstrap/cache -type f -exec chmod 664 {} \; 2>/dev/null || true git fetch origin git checkout "$BRANCH" @@ -38,10 +37,9 @@ if ! grep -q '^APP_KEY=base64:' .env; then exit 1 fi -sudo mkdir -p "$UPLOADS_DIR"/{images,videos,hero-slides,settings,pages,courses,announcements,categories} -sudo chown -R "$USER":www-data "$UPLOADS_DIR" 2>/dev/null || true -sudo find "$UPLOADS_DIR" -type d -exec chmod 2775 {} \; 2>/dev/null || true -sudo find "$UPLOADS_DIR" -type f -exec chmod 664 {} \; 2>/dev/null || true +mkdir -p "$UPLOADS_DIR"/{images,videos,hero-slides,settings,pages,courses,announcements,categories} +find "$UPLOADS_DIR" -type d -exec chmod 2775 {} \; 2>/dev/null || true +find "$UPLOADS_DIR" -type f -exec chmod 664 {} \; 2>/dev/null || true docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" down --remove-orphans || true docker compose -p "$COMPOSE_PROJECT" -f "$COMPOSE_FILE" up -d --build