-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E: Method https has died unexpectedly! & E: Sub-process https received signal 4 #78
Comments
I can't interpret the error, but actually https://laravel.com/docs/11.x/sail is used here. First you install the dependencies with Composer
And then you can start Sail, which uses Docker:
|
I have tryed running the commands and I still got the same error massage. I think it has something to do with the apt-update command not finding a package or not beeing able to read it.
|
That's right, maybe the Docker container can't access the Internet in general? You could go into the container via SSH and try Unfortunately, I can't help you further from afar. I used the Laravel/Sail version last week to install it in other projects and at least it still worked for me. My guess is generally your network connection. However, if you think that the error is in the repo, then there is nothing we can do here at InstaHub and we would have to contact https://github.com/laravel/sail directly. You don't necessarily need Sail. You can also install Apache, PHP and mariadb separately and run InstaHub that way. For Windows, this works quite well with https://www.apachefriends.org/de/download.html. |
When I try to start the Docker container via "docker compose up -d," it throws an error about not being able to connect to HTTPS, apparently.
I have tried to set the Variable "GNUTLS_CPUID_OVERRIDE=0x1" but it didn't help.
LOG:
49.89 done.
49.89 Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ...
50.34 Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
50.35 Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease
50.41 Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease
50.48 Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease
50.73 Reading package lists...
51.99 E: Method https has died unexpectedly!
51.99 E: Sub-process https received signal 4.
failed to solve: process "/bin/sh -c apt-get update && mkdir -p /etc/apt/keyrings && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2 dnsutils librsvg2-bin fswatch ffmpeg nano && curl -sS 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x14aa40ec0831756756d7f66c4f4ea0aae5267a6c' | gpg --dearmor | tee /etc/apt/keyrings/ppa_ondrej_php.gpg > /dev/null && echo "deb [signed-by=/etc/apt/keyrings/ppa_ondrej_php.gpg] https://ppa.launchpadcontent.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ppa_ondrej_php.list && apt-get update && apt-get install -y php8.3-cli php8.3-dev php8.3-pgsql php8.3-sqlite3 php8.3-gd php8.3-curl php8.3-imap php8.3-mysql php8.3-mbstring php8.3-xml php8.3-zip php8.3-bcmath php8.3-soap php8.3-intl php8.3-readline php8.3-ldap php8.3-msgpack php8.3-igbinary php8.3-redis php8.3-swoole php8.3-memcached php8.3-pcov php8.3-imagick php8.3-xdebug && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install -y nodejs && npm install -g npm && npm install -g pnpm && npm install -g bun && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /etc/apt/keyrings/yarn.gpg >/dev/null && echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | tee /etc/apt/keyrings/pgdg.gpg >/dev/null && echo "deb [signed-by=/etc/apt/keyrings/pgdg.gpg] http://apt.postgresql.org/pub/repos/apt jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list && apt-get update && apt-get install -y yarn && apt-get install -y $MYSQL_CLIENT && apt-get install -y postgresql-client-$POSTGRES_VERSION && apt-get -y autoremove && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*" did not complete successfully: exit code: 100
The text was updated successfully, but these errors were encountered: