【问题标题】:Laravel sail failed to startLaravel 帆无法启动
【发布时间】:2021-08-30 20:55:05
【问题描述】:

我正在尝试在 Mac M1 上启动 laravel 航行。我能够解决mysql版本问题。现在,当我运行.vendor/bin/sail up 命令时,它会卡在[4/12] RUN apt-get update && apt-get install -y gnupg gosu curl。这些是错误出现之前的最后一条命令

#8 133.9 Fetched 25.3 MB in 10s (2488 kB/s)
#8 134.0 Selecting previously unselected package nodejs.
(Reading database ... 21562 files and directories currently installed.)
#8 134.0 Preparing to unpack .../nodejs_16.3.0-deb-1nodesource1_arm64.deb ...
#8 134.0 Unpacking nodejs (16.3.0-deb-1nodesource1) ...
#8 135.7 Setting up nodejs (16.3.0-deb-1nodesource1) ...
#8 135.7 Processing triggers for man-db (2.9.1-1) ...
#8 135.8 Warning: apt-key output should not be parsed (stdout is not a terminal)
#8 136.8 gpg: no valid OpenPGP data found.
#8 136.8 Segmentation fault

最后显示这个错误。

executor failed running [/bin/sh -c apt-get update     && apt-get install -y gnupg gosu curl ca-certificates zip unzip git supervisor sqlite3 libcap2-bin libpng-dev python2     && mkdir -p ~/.gnupg     && chmod 600 ~/.gnupg     && echo "disable-ipv6" >> ~/.gnupg/dirmngr.conf     && apt-key adv --homedir ~/.gnupg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E5267A6C     && apt-key adv --homedir ~/.gnupg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C300EE8C     && echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu focal main" > /etc/apt/sources.list.d/ppa_ondrej_php.list     && apt-get update     && apt-get install -y php8.0-cli php8.0-dev        php8.0-pgsql php8.0-sqlite3 php8.0-gd        php8.0-curl php8.0-memcached        php8.0-imap php8.0-mysql php8.0-mbstring        php8.0-xml php8.0-zip php8.0-bcmath php8.0-soap        php8.0-intl php8.0-readline        php8.0-msgpack php8.0-igbinary php8.0-ldap        php8.0-redis     && php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer     && curl -sL https://deb.nodesource.com/setup_16.x | bash -     && apt-get install -y nodejs     && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -     && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list     && apt-get update     && apt-get install -y yarn     && apt-get install -y mysql-client     && apt-get install -y postgresql-client     && apt-get -y autoremove     && apt-get clean     && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*]: exit code: 2
ERROR: Service 'laravel.test' failed to build : Build failed

【问题讨论】:

  • 我还看到了 1 篇关于此的帖子。 gnupggosu 出现错误。对此一无所知,因为我有自己的docker-compose 来防止此类问题。我想说的是,也许,这是一个普遍的问题。
  • 这个问题是在帆正常工作之前出现的。然后突然开始显示错误。我还重新安装了 docker,以防出现问题。我也尝试了很多 laravel docker-compose 但没用。你能分享你的 docker-compose 吗?它可以帮助我指出问题。
  • 该错误显然与它正在使用的图像有关,在这种情况下ubuntu(我认为),因此它与docker或类似的东西无关。
  • 不,这个解决方案不起作用

标签: laravel docker laravel-sail


【解决方案1】:

根据 laravel/sail repo 上的这个已关闭问题,截至本文发布时的修复是降级 Docker。这解决了我的问题。

https://github.com/laravel/sail/issues/159#issuecomment-863079097

【讨论】:

    猜你喜欢
    • 2022-08-06
    • 2014-09-09
    • 1970-01-01
    • 1970-01-01
    • 2019-06-19
    • 2019-10-20
    • 1970-01-01
    • 2021-08-03
    • 2016-06-19
    相关资源
    最近更新 更多