在 Windows 10 专业版中搭建 Laravel Sail 开发环境
1、Laravel Sail 要求支持 WSL 2 的 Windows 10 系统。在 2020 年五月份发布的 2004 版本才支持 WSL 2 功能,所以我们的系统需更新到等于或大于 2004 版本。查看系统版本,可以使用 winver 命令,参考 Windows 10 release information ,版本的发布时间大于 1909 即可。系统版本符合要求。如图1
2、先基于 360 升级至:最新的 21H1 的版本。如图2
3、查看系统版本,已经升级至:21H1 的版本。如图3
4、搜索打开 Windows 功能管理 窗口,确保下图红框框住的两个地方都已开启:适用于 Linux 的 Windows 子系统、远程差分压缩 API 支持。如图4
5、为了更好地访问 Windows 的子系统,推荐使用 Windows Terminal 作为命令行工具。打开微软商店,搜索关键字 Windows Terminal ,在搜索结果中点击安装即可。如图5
6、下载和安装子系统:Ubuntu 。打开微软商店,搜索关键词 Ubuntu,第一和第二个都可以,选择第二个:Ubuntu 20.04 LTS。如图6
7、提示创建一个 Ubuntu 系统的用户,入用户名,接下来输入密码即可完成 Ubuntu 子系统的安装。这个 Ubuntu 为当前 Windows 系统的子系统,接下来我们的 Docker 会基于此系统运行。如图7
8、前往 Docker 官网下载 Docker Desktop:https://hub.docker.com/editions/community/docker-ce-desktop-windows ,下载完成后点击安装包安装,一直下一步即可。
9、提示:WSL 2 installation is incomplete. WSL 2 安装不完整。如图8
1 2 3 4 | WSL 2 installation is incomplete. The WSL 2 Linux kernel is now installed using a separate MSI update package. Please click the link and follow the instructions to install the kernel update:https://aka.ms/wsl2kernel Press restart after installing the Linux kernel |
10、点击链接并按照说明安装内核更新:https://aka.ms/wsl2kernel 。下载并安装 Linux 内核更新包。如图9
11、重启电脑,再次打开 Docker Desktop,报错:Docker failed to initialize。暂时不用理会。如图10
12、再次重启电脑后。打开 Docker Desktop,未再报错。进入配置页面 – General,默认已勾选 Use the WSL 2 based engine,开启 WSL2 模式。如图11
13、配置 – Resources – WSL Integration,选择我们上一步安装的 Ubuntu 系统,但是不存在 ubuntu 选项。如图12
14、参考网址:https://learnku.com/articles/54890 。打开:Windows Terminal,转换为 WSL 2。如图13
1 2 3 4 5 6 7 8 9 10 | PS C:\Users\Lenovo> wsl --list --verbose NAME STATE VERSION * Ubuntu-20.04 Running 1 docker-desktop-data Running 2 docker-desktop Running 2 PS C:\Users\Lenovo> wsl -- set-version Ubuntu-20.04 2 正在进行转换,这可能需要几分钟时间... 有关与 WSL 2 的主要区别的信息,请访问 https://aka.ms/wsl2 转换完成。 PS C:\Users\Lenovo> |
15、点击按钮 Refresh,选项 Ubuntu-20.04 已经出现,开启。如图14
16、创建测试项目,打开 Windows Terminal 命令行,按照以下指示进入 Ubuntu 系统。如图15
17、Ubuntu 作为 Windows 子系统,可以访问到主系统下的硬盘。为了方便管理代码,我在 E 盘下早已创建了 wwwroot 目录,进入此目录后,使用以下命令进行创建一个测试的 Laravel 项目。如图16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | wangqiang@DESKTOP-QLPK8QM: /mnt/c/Users/Lenovo $ cd /mnt/e wangqiang@DESKTOP-QLPK8QM: /mnt/e $ ls '$RECYCLE.BIN' 'System Volume Information' cms pagefile.sys phpuploadtmp Develop c css phpsessiontmp wwwroot wangqiang@DESKTOP-QLPK8QM: /mnt/e $ cd wwwroot/ wangqiang@DESKTOP-QLPK8QM: /mnt/e/wwwroot $ curl -s https: //laravel .build /example-app | bash Unable to find image 'laravelsail/php81-composer:latest' locally latest: Pulling from laravelsail /php81-composer eff15d958d66: Pull complete 933427dc39f7: Pull complete 35bb08dc7ee2: Pull complete 58a3f26800d7: Pull complete 28803bfad74c: Pull complete 341a482d0bd3: Pull complete 03c4148389b1: Pull complete fa3a9bfc7793: Pull complete 024907232600: Pull complete df5987d70de6: Pull complete e2a72a518bd8: Pull complete b1ba689993c8: Pull complete 3bd142ab0b85: Pull complete 872fe34989f0: Pull complete Digest: sha256:b27920b769ad8dc036a9ede3ae36f51a280d370ec7d125e77ca1924c9fa21dbb Status: Downloaded newer image for laravelsail /php81-composer :latest _ _ | | | | | | __ _ _ __ __ ___ _____| | | | / _` | '__/ _` \ \ / / _ \ | | |___| (_| | | | (_| |\ V / __/ | |______\__,_|_| \__,_| \_/ \___|_| Warning: TTY mode requires /dev/tty to be read /writable . Creating a "laravel/laravel" project at "./example-app" Installing laravel /laravel (v8.6.9) - Downloading laravel /laravel (v8.6.9) - Installing laravel /laravel (v8.6.9): Extracting archive Created project in /opt/example-app > @php -r "file_exists('.env') || copy('.env.example', '.env');" Loading composer repositories with package information Updating dependencies Lock file operations: 110 installs, 0 updates, 0 removals - Locking asm89 /stack-cors (v2.0.3) - Locking brick /math (0.9.3) - Locking dflydev /dot-access-data (v3.0.1) - Locking doctrine /inflector (2.0.4) - Locking doctrine /instantiator (1.4.0) - Locking doctrine /lexer (1.2.1) - Locking dragonmantank /cron-expression (v3.1.0) - Locking egulias /email-validator (2.1.25) - Locking facade /flare-client-php (1.9.1) - Locking facade /ignition (2.17.2) - Locking facade /ignition-contracts (1.0.2) - Locking fakerphp /faker (v1.17.0) - Locking filp /whoops (2.14.4) - Locking fruitcake /laravel-cors (v2.0.4) - Locking graham-campbell /result-type (v1.0.4) - Locking guzzlehttp /guzzle (7.4.1) - Locking guzzlehttp /promises (1.5.1) - Locking guzzlehttp /psr7 (2.1.0) - Locking hamcrest /hamcrest-php (v2.0.1) - Locking laravel /framework (v8.76.2) - Locking laravel /sail (v1.12.12) - Locking laravel /sanctum (v2.13.0) - Locking laravel /serializable-closure (v1.0.5) - Locking laravel /tinker (v2.6.3) - Locking league /commonmark (2.1.0) - Locking league /config (v1.1.1) - Locking league /flysystem (1.1.9) - Locking league /mime-type-detection (1.9.0) - Locking mockery /mockery (1.4.4) - Locking monolog /monolog (2.3.5) - Locking myclabs /deep-copy (1.10.2) - Locking nesbot /carbon (2.55.2) - Locking nette /schema (v1.2.2) - Locking nette /utils (v3.2.6) - Locking nikic /php-parser (v4.13.2) - Locking nunomaduro /collision (v5.10.0) - Locking opis /closure (3.6.2) - Locking phar-io /manifest (2.0.3) - Locking phar-io /version (3.1.0) - Locking phpdocumentor /reflection-common (2.2.0) - Locking phpdocumentor /reflection-docblock (5.3.0) - Locking phpdocumentor /type-resolver (1.5.1) - Locking phpoption /phpoption (1.8.1) - Locking phpspec /prophecy (v1.15.0) - Locking phpunit /php-code-coverage (9.2.10) - Locking phpunit /php-file-iterator (3.0.6) - Locking phpunit /php-invoker (3.1.1) - Locking phpunit /php-text-template (2.0.4) - Locking phpunit /php-timer (5.0.3) - Locking phpunit /phpunit (9.5.10) - Locking psr /container (1.1.2) - Locking psr /event-dispatcher (1.0.0) - Locking psr /http-client (1.0.1) - Locking psr /http-factory (1.0.1) - Locking psr /http-message (1.0.1) - Locking psr /log (2.0.0) - Locking psr /simple-cache (1.0.1) - Locking psy /psysh (v0.10.12) - Locking ralouphie /getallheaders (3.0.3) - Locking ramsey /collection (1.2.2) - Locking ramsey /uuid (4.2.3) - Locking sebastian /cli-parser (1.0.1) - Locking sebastian /code-unit (1.0.8) - Locking sebastian /code-unit-reverse-lookup (2.0.3) - Locking sebastian /comparator (4.0.6) - Locking sebastian /complexity (2.0.2) - Locking sebastian /diff (4.0.4) - Locking sebastian /environment (5.1.3) - Locking sebastian /exporter (4.0.4) - Locking sebastian /global-state (5.0.3) - Locking sebastian /lines-of-code (1.0.3) - Locking sebastian /object-enumerator (4.0.4) - Locking sebastian /object-reflector (2.0.4) - Locking sebastian /recursion-context (4.0.4) - Locking sebastian /resource-operations (3.0.3) - Locking sebastian /type (2.3.4) - Locking sebastian /version (3.0.2) - Locking swiftmailer /swiftmailer (v6.3.0) - Locking symfony /console (v5.4.1) - Locking symfony /css-selector (v6.0.1) - Locking symfony /deprecation-contracts (v3.0.0) - Locking symfony /error-handler (v5.4.1) - Locking symfony /event-dispatcher (v6.0.1) - Locking symfony /event-dispatcher-contracts (v3.0.0) - Locking symfony /finder (v5.4.0) - Locking symfony /http-foundation (v5.4.1) - Locking symfony /http-kernel (v5.4.1) - Locking symfony /mime (v5.4.0) - Locking symfony /polyfill-ctype (v1.23.0) - Locking symfony /polyfill-iconv (v1.23.0) - Locking symfony /polyfill-intl-grapheme (v1.23.1) - Locking symfony /polyfill-intl-idn (v1.23.0) - Locking symfony /polyfill-intl-normalizer (v1.23.0) - Locking symfony /polyfill-mbstring (v1.23.1) - Locking symfony /polyfill-php72 (v1.23.0) - Locking symfony /polyfill-php73 (v1.23.0) - Locking symfony /polyfill-php80 (v1.23.1) - Locking symfony /polyfill-php81 (v1.23.0) - Locking symfony /process (v5.4.0) - Locking symfony /routing (v5.4.0) - Locking symfony /service-contracts (v2.4.1) - Locking symfony /string (v6.0.1) - Locking symfony /translation (v6.0.1) - Locking symfony /translation-contracts (v3.0.0) - Locking symfony /var-dumper (v5.4.1) - Locking theseer /tokenizer (1.2.1) - Locking tijsverkoyen /css-to-inline-styles (2.2.4) - Locking vlucas /phpdotenv (v5.4.1) - Locking voku /portable-ascii (1.5.6) - Locking webmozart /assert (1.10.0) Writing lock file Installing dependencies from lock file (including require-dev) Package operations: 110 installs, 0 updates, 0 removals - Downloading doctrine /inflector (2.0.4) - Downloading doctrine /lexer (1.2.1) - Downloading dragonmantank /cron-expression (v3.1.0) - Downloading symfony /var-dumper (v5.4.1) - Downloading symfony /string (v6.0.1) - Downloading psr /container (1.1.2) - Downloading symfony /service-contracts (v2.4.1) - Downloading symfony /console (v5.4.1) - Downloading psr /log (2.0.0) - Downloading monolog /monolog (2.3.5) - Downloading voku /portable-ascii (1.5.6) - Downloading phpoption /phpoption (1.8.1) - Downloading graham-campbell /result-type (v1.0.4) - Downloading vlucas /phpdotenv (v5.4.1) - Downloading symfony /css-selector (v6.0.1) - Downloading tijsverkoyen /css-to-inline-styles (2.2.4) - Downloading symfony /routing (v5.4.0) - Downloading symfony /polyfill-php72 (v1.23.0) - Downloading symfony /polyfill-intl-idn (v1.23.0) - Downloading symfony /mime (v5.4.0) - Downloading symfony /http-foundation (v5.4.1) - Downloading psr /event-dispatcher (1.0.0) - Downloading symfony /event-dispatcher-contracts (v3.0.0) - Downloading symfony /event-dispatcher (v6.0.1) - Downloading symfony /error-handler (v5.4.1) - Downloading symfony /http-kernel (v5.4.1) - Downloading symfony /finder (v5.4.0) - Downloading symfony /polyfill-iconv (v1.23.0) - Downloading egulias /email-validator (2.1.25) - Downloading swiftmailer /swiftmailer (v6.3.0) - Downloading symfony /polyfill-php81 (v1.23.0) - Downloading ramsey /collection (1.2.2) - Downloading brick /math (0.9.3) - Downloading ramsey /uuid (4.2.3) - Downloading psr /simple-cache (1.0.1) - Downloading opis /closure (3.6.2) - Downloading symfony /translation-contracts (v3.0.0) - Downloading symfony /translation (v6.0.1) - Downloading nesbot /carbon (2.55.2) - Downloading league /mime-type-detection (1.9.0) - Downloading league /flysystem (1.1.9) - Downloading nette /utils (v3.2.6) - Downloading nette /schema (v1.2.2) - Downloading dflydev /dot-access-data (v3.0.1) - Downloading league /config (v1.1.1) - Downloading league /commonmark (2.1.0) - Downloading laravel /serializable-closure (v1.0.5) - Downloading laravel /framework (v8.76.2) - Downloading facade /ignition-contracts (1.0.2) - Downloading facade /flare-client-php (1.9.1) - Downloading facade /ignition (2.17.2) - Downloading fakerphp /faker (v1.17.0) - Downloading asm89 /stack-cors (v2.0.3) - Downloading fruitcake /laravel-cors (v2.0.4) - Downloading psr /http-message (1.0.1) - Downloading psr /http-client (1.0.1) - Downloading ralouphie /getallheaders (3.0.3) - Downloading psr /http-factory (1.0.1) - Downloading guzzlehttp /psr7 (2.1.0) - Downloading guzzlehttp /promises (1.5.1) - Downloading guzzlehttp /guzzle (7.4.1) - Downloading laravel /sail (v1.12.12) - Downloading laravel /sanctum (v2.13.0) - Downloading nikic /php-parser (v4.13.2) - Downloading psy /psysh (v0.10.12) - Downloading laravel /tinker (v2.6.3) - Downloading hamcrest /hamcrest-php (v2.0.1) - Downloading mockery /mockery (1.4.4) - Downloading filp /whoops (2.14.4) - Downloading nunomaduro /collision (v5.10.0) - Downloading phpunit /php-file-iterator (3.0.6) - Downloading phpunit /php-code-coverage (9.2.10) - Downloading phpspec /prophecy (v1.15.0) - Installing doctrine /inflector (2.0.4): Extracting archive - Installing doctrine /lexer (1.2.1): Extracting archive - Installing symfony /polyfill-ctype (v1.23.0): Extracting archive - Installing webmozart /assert (1.10.0): Extracting archive - Installing dragonmantank /cron-expression (v3.1.0): Extracting archive - Installing symfony /polyfill-php80 (v1.23.1): Extracting archive - Installing symfony /polyfill-mbstring (v1.23.1): Extracting archive - Installing symfony /var-dumper (v5.4.1): Extracting archive - Installing symfony /polyfill-intl-normalizer (v1.23.0): Extracting archive - Installing symfony /polyfill-intl-grapheme (v1.23.1): Extracting archive - Installing symfony /string (v6.0.1): Extracting archive - Installing psr /container (1.1.2): Extracting archive - Installing symfony /service-contracts (v2.4.1): Extracting archive - Installing symfony /polyfill-php73 (v1.23.0): Extracting archive - Installing symfony /deprecation-contracts (v3.0.0): Extracting archive - Installing symfony /console (v5.4.1): Extracting archive - Installing psr /log (2.0.0): Extracting archive - Installing monolog /monolog (2.3.5): Extracting archive - Installing voku /portable-ascii (1.5.6): Extracting archive - Installing phpoption /phpoption (1.8.1): Extracting archive - Installing graham-campbell /result-type (v1.0.4): Extracting archive - Installing vlucas /phpdotenv (v5.4.1): Extracting archive - Installing symfony /css-selector (v6.0.1): Extracting archive - Installing tijsverkoyen /css-to-inline-styles (2.2.4): Extracting archive - Installing symfony /routing (v5.4.0): Extracting archive - Installing symfony /process (v5.4.0): Extracting archive - Installing symfony /polyfill-php72 (v1.23.0): Extracting archive - Installing symfony /polyfill-intl-idn (v1.23.0): Extracting archive - Installing symfony /mime (v5.4.0): Extracting archive - Installing symfony /http-foundation (v5.4.1): Extracting archive - Installing psr /event-dispatcher (1.0.0): Extracting archive - Installing symfony /event-dispatcher-contracts (v3.0.0): Extracting archive - Installing symfony /event-dispatcher (v6.0.1): Extracting archive - Installing symfony /error-handler (v5.4.1): Extracting archive - Installing symfony /http-kernel (v5.4.1): Extracting archive - Installing symfony /finder (v5.4.0): Extracting archive - Installing symfony /polyfill-iconv (v1.23.0): Extracting archive - Installing egulias /email-validator (2.1.25): Extracting archive - Installing swiftmailer /swiftmailer (v6.3.0): Extracting archive - Installing symfony /polyfill-php81 (v1.23.0): Extracting archive - Installing ramsey /collection (1.2.2): Extracting archive - Installing brick /math (0.9.3): Extracting archive - Installing ramsey /uuid (4.2.3): Extracting archive - Installing psr /simple-cache (1.0.1): Extracting archive - Installing opis /closure (3.6.2): Extracting archive - Installing symfony /translation-contracts (v3.0.0): Extracting archive - Installing symfony /translation (v6.0.1): Extracting archive - Installing nesbot /carbon (2.55.2): Extracting archive - Installing league /mime-type-detection (1.9.0): Extracting archive - Installing league /flysystem (1.1.9): Extracting archive - Installing nette /utils (v3.2.6): Extracting archive - Installing nette /schema (v1.2.2): Extracting archive - Installing dflydev /dot-access-data (v3.0.1): Extracting archive - Installing league /config (v1.1.1): Extracting archive - Installing league /commonmark (2.1.0): Extracting archive - Installing laravel /serializable-closure (v1.0.5): Extracting archive - Installing laravel /framework (v8.76.2): Extracting archive - Installing facade /ignition-contracts (1.0.2): Extracting archive - Installing facade /flare-client-php (1.9.1): Extracting archive - Installing facade /ignition (2.17.2): Extracting archive - Installing fakerphp /faker (v1.17.0): Extracting archive - Installing asm89 /stack-cors (v2.0.3): Extracting archive - Installing fruitcake /laravel-cors (v2.0.4): Extracting archive - Installing psr /http-message (1.0.1): Extracting archive - Installing psr /http-client (1.0.1): Extracting archive - Installing ralouphie /getallheaders (3.0.3): Extracting archive - Installing psr /http-factory (1.0.1): Extracting archive - Installing guzzlehttp /psr7 (2.1.0): Extracting archive - Installing guzzlehttp /promises (1.5.1): Extracting archive - Installing guzzlehttp /guzzle (7.4.1): Extracting archive - Installing laravel /sail (v1.12.12): Extracting archive - Installing laravel /sanctum (v2.13.0): Extracting archive - Installing nikic /php-parser (v4.13.2): Extracting archive - Installing psy /psysh (v0.10.12): Extracting archive - Installing laravel /tinker (v2.6.3): Extracting archive - Installing hamcrest /hamcrest-php (v2.0.1): Extracting archive - Installing mockery /mockery (1.4.4): Extracting archive - Installing filp /whoops (2.14.4): Extracting archive - Installing nunomaduro /collision (v5.10.0): Extracting archive - Installing phpdocumentor /reflection-common (2.2.0): Extracting archive - Installing phpdocumentor /type-resolver (1.5.1): Extracting archive - Installing phpdocumentor /reflection-docblock (5.3.0): Extracting archive - Installing sebastian /version (3.0.2): Extracting archive - Installing sebastian /type (2.3.4): Extracting archive - Installing sebastian /resource-operations (3.0.3): Extracting archive - Installing sebastian /recursion-context (4.0.4): Extracting archive - Installing sebastian /object-reflector (2.0.4): Extracting archive - Installing sebastian /object-enumerator (4.0.4): Extracting archive - Installing sebastian /global-state (5.0.3): Extracting archive - Installing sebastian /exporter (4.0.4): Extracting archive - Installing sebastian /environment (5.1.3): Extracting archive - Installing sebastian /diff (4.0.4): Extracting archive - Installing sebastian /comparator (4.0.6): Extracting archive - Installing sebastian /code-unit (1.0.8): Extracting archive - Installing sebastian /cli-parser (1.0.1): Extracting archive - Installing phpunit /php-timer (5.0.3): Extracting archive - Installing phpunit /php-text-template (2.0.4): Extracting archive - Installing phpunit /php-invoker (3.1.1): Extracting archive - Installing phpunit /php-file-iterator (3.0.6): Extracting archive - Installing theseer /tokenizer (1.2.1): Extracting archive - Installing sebastian /lines-of-code (1.0.3): Extracting archive - Installing sebastian /complexity (2.0.2): Extracting archive - Installing sebastian /code-unit-reverse-lookup (2.0.3): Extracting archive - Installing phpunit /php-code-coverage (9.2.10): Extracting archive - Installing doctrine /instantiator (1.4.0): Extracting archive - Installing phpspec /prophecy (v1.15.0): Extracting archive - Installing phar-io /version (3.1.0): Extracting archive - Installing phar-io /manifest (2.0.3): Extracting archive - Installing myclabs /deep-copy (1.10.2): Extracting archive - Installing phpunit /phpunit (9.5.10): Extracting archive 76 package suggestions were added by new dependencies, use `composer suggest` to see details. Package swiftmailer /swiftmailer is abandoned, you should avoid using it. Use symfony /mailer instead. Generating optimized autoload files > Illuminate\Foundation\ComposerScripts::postAutoloadDump > @php artisan package:discover --ansi Discovered Package: facade /ignition Discovered Package: fruitcake /laravel-cors Discovered Package: laravel /sail Discovered Package: laravel /sanctum Discovered Package: laravel /tinker Discovered Package: nesbot /carbon Discovered Package: nunomaduro /collision Package manifest generated successfully. 77 packages you are using are looking for funding. Use the `composer fund` command to find out more ! > @php artisan vendor:publish --tag=laravel-assets --ansi --force No publishable resources for tag [laravel-assets]. Publishing complete. > @php artisan key:generate --ansi Application key set successfully. Application ready! Build something amazing. Sail scaffolding installed successfully. Please provide your password so we can make some final adjustments to your application's permissions. [ sudo ] password for wangqiang: Thank you! We hope you build something incredible. Dive in with: cd example-app && . /vendor/bin/sail up wangqiang@DESKTOP-QLPK8QM: /mnt/e/wwwroot $ |
18、最终创建成功的界面。如图17
19、打开 E:\wwwroot\example-app 目录。如图18
20、查看 Dockerfile 文件,Laravel 8 默认用的是 vendor/laravel/sail/runtimes/8.0 目录下的 Dockerfile。如图19
21、运行容器,在项目的根目录下,执行以下命令:./vendor/bin/sail up。第一次运行的时候,会初始化容器。建议翻墙。我一般不倾向于使用国内的镜像。报错。如图20
1 2 | ERROR: for mysql Cannot start service mysql: Ports are not available: listen tcp 0.0.0.0:3306: bind: Only one usage of each socket address (protocol /network address /port ) is normally permitted. ERROR: Encountered errors while bringing up the project. |
22、原因应该在于本地的 mysql 数据库已经使用了 3306 端口,决定先将本地 mysql 数据库的端口修改为 3307。打开目录 C:\ProgramData\MySQL\MySQL Server 5.7,编辑 my.ini 文件。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [client] # pipe # socket=0.0 port=3307 [mysqld] # The next three options are mutually exclusive to SERVER_PORT below. # skip-networking # enable-named-pipe # shared-memory # shared-memory-base-name=MYSQL # The Pipe the MySQL Server will use # socket=MYSQL # The TCP/IP Port the MySQL Server will listen on port=3307 |
23、重启电脑后,基于端口 3307 连接本地 mysql 数据库成功。如图21
24、再次运行命令:./vendor/bin/sail up。会从 mysql 处开始运行,总计耗费时长:20分钟。sail up 命令运行成功后,会一直显示软件的实时日志界面。如图22
25、此时你可以 ctrl+c 中断运行,再次运行时,可以使用 -d 参数让 sail up 命令在后台运行。如图23
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | meilisearch_1 | [2021-12-21T03:09:36Z INFO actix_web::middleware::logger] 127.0.0.1:51806 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000297 ^CGracefully stopping... (press Ctrl+C again to force) Stopping example-app_laravel.test_1 ... done Stopping example-app_mailhog_1 ... done Stopping example-app_mysql_1 ... done Stopping example-app_selenium_1 ... done Stopping example-app_redis_1 ... done Stopping example-app_meilisearch_1 ... done wangqiang@DESKTOP-QLPK8QM: /mnt/e/wwwroot/example-app $ . /vendor/bin/sail up -d example-app_laravel.test_1 start-container Exit 137 Shutting down old Sail processes... Creating network "example-app_sail" with driver "bridge" Creating example-app_redis_1 ... done Creating example-app_mailhog_1 ... done Creating example-app_meilisearch_1 ... done Creating example-app_selenium_1 ... done Creating example-app_mysql_1 ... done Creating example-app_laravel.test_1 ... done wangqiang@DESKTOP-QLPK8QM: /mnt/e/wwwroot/example-app $ |
26、打开 Docker Desktop,容器列表中存在容器:example-app,状态为运行中。如图24
27、在浏览器中打开网址:http://localhost/ ,响应 200 。Laravel v8.76.2 (PHP v8.1.0)。开发环境部署成功。如图25
28、针对 3306 端口被占用的问题,还有另外一种方案,即修改容器的端口为 43306。本地 mysql 数据库仍然使用 3306 端口。计划后续基于 Nginx Proxy Manager 实现。
29、编辑 C:/Windows/System32/Drivers/etc/hosts 文件,指定 IP 与域名之间的映射关系。
1 | 127.0.0.1 example-app.test |
30、在浏览器中打开网址:http://example-app.test/ 。响应 200。如图26
近期评论