From f3bccf6f9e6209e4f619ea3e59dbab86e80f9264 Mon Sep 17 00:00:00 2001 From: Codey McCodeFace Date: Tue, 17 Jun 2025 18:31:30 +0530 Subject: [PATCH] Make ddev aware of ssh keys for installing private packages. --- ci-scripts/install_ddev.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci-scripts/install_ddev.sh b/ci-scripts/install_ddev.sh index cba2988c3..c38b5e110 100755 --- a/ci-scripts/install_ddev.sh +++ b/ci-scripts/install_ddev.sh @@ -36,6 +36,10 @@ else echo "Docker network ddev_default already exists." fi +# Make the DDEV container aware of your SSH keys for installing any +# private packagees. +ddev auth ssh + echo "Running ddev composer install." if ! ddev composer install; then echo "ddev composer install failed."