首頁 >php框架 >Laravel >解決Laravel安裝sail時ubuntu軟體來源很慢或connection failed

解決Laravel安裝sail時ubuntu軟體來源很慢或connection failed

藏色散人
藏色散人轉載
2021-03-17 17:31:282933瀏覽

下面由laravel教學欄位介紹解決Laravel安裝sail時ubuntu軟體來源很慢或connection failed方法,希望對需要的朋友有幫助!

解決Laravel安裝sail時ubuntu軟體來源很慢或connection failed

Laravel 安裝sail時ubuntu軟體來源很慢或connection failed 解決方案

修改Laravel sail ubuntu 軟體來源

修改檔案
C:Users2018977115-pc 你的專案名字vendorlaravelsailruntimes8.0
下Dockerfile
在RUN apt-get update  前增加

RUN  sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN  sed -i s@/security.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list

RUN  apt-get clean

然後在Linux 裡-get update  前增加

cd 你的项目名字

./vendor/bin/sail up

然後在Linux 裡執行後面

建立專案後,您可以導航到應用程式目錄並啟動Laravel Sail。 Laravel Sail 提供了一個簡單的命令列介面,用於與 Laravel 的預設 Docker 配置進行互動:

rrreee

第一次執行 Sailup 命令時,Sail 的應用程式容器將在您的電腦上建置。這可能需要幾分鐘。不用擔心,隨後啟動 Sail 的嘗試會更快。

一旦啟動了應用程式的 Docker 容器,您就可以在 Web 瀏覽器中存取該應用程序,
網址為:http://localhost/index.php。 ######

以上是解決Laravel安裝sail時ubuntu軟體來源很慢或connection failed的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除