Skip to content

Commit bce05e4

Browse files
Mahmoudznaillizard
authored andcommitted
little cleanup
1 parent 4ce1d7f commit bce05e4

19 files changed

Lines changed: 110 additions & 110 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
- PHP_VERSION=71
1111
- HUGO_VERSION=0.19
1212

13-
script: ./_scripts/travis-build.sh
13+
script: ./travis-build.sh
1414

1515
deploy:
1616
provider: pages

DOCUMENTATION/content/documentation/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,11 +336,11 @@ By installing xDebug, you are enabling it to run on startup by default.
336336

337337
To control the behavior of xDebug (in the `php-fpm` Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):
338338

339-
- Stop xDebug from running by default: `./xdebugPhpFpm stop`.
340-
- Start xDebug by default: `./xdebugPhpFpm start`.
341-
- See the status: `./xdebugPhpFpm status`.
339+
- Stop xDebug from running by default: `.php-fpm/xdebug stop`.
340+
- Start xDebug by default: `.php-fpm/xdebug start`.
341+
- See the status: `.php-fpm/xdebug status`.
342342

343-
Note: If `./xdebugPhpFpm` doesn't execute and gives `Permission Denied` error the problem can be that file `xdebugPhpFpm` doesn't have execution access. This can be fixed by running `chmod` command with desired access permissions.
343+
Note: If `.php-fpm/xdebug` doesn't execute and gives `Permission Denied` error the problem can be that file `xdebug` doesn't have execution access. This can be fixed by running `chmod` command with desired access permissions.
344344

345345

346346

DOCUMENTATION/content/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ You can rename the config files, project folders and domains as you like, just m
138138
If you are using **Docker Toolbox** (VM), do one of the following:
139139

140140
- Upgrade to Docker [Native](https://www.docker.com/products/docker) for Mac/Windows (Recommended). Check out [Upgrading Laradock](/documentation/#upgrading-laradock)
141-
- Use Laradock v3.\*. Visit the [LaraDock-ToolBox](https://github.com/laradock/laradock/tree/LaraDock-ToolBox) branch. *(outdated)*
141+
- Use Laradock v3.\*. Visit the [Laradock-ToolBox](https://github.com/laradock/laradock/tree/Laradock-ToolBox) branch. *(outdated)*
142142

143143
<br>
144144

DOCUMENTATION/content/guides/index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $root@server:~# docker
4545
$root@server:~# apt-get install git
4646
$root@server:~# git clone https://github.com/laravel/laravel
4747
$root@server:~# cd laravel
48-
$root@server:~/laravel/ git submodule add https://github.com/LaraDock/laradock.git
48+
$root@server:~/laravel/ git submodule add https://github.com/Laradock/laradock.git
4949
$root@server:~/laravel/ cd laradock
5050
```
5151

@@ -56,7 +56,7 @@ $root@server:~/laravel/laradock# curl -L https://github.com/docker/compose/relea
5656
$root@server:~/chmod +x /usr/local/bin/docker-compose
5757
```
5858

59-
## Create Your LaraDock Containers
59+
## Create Your Laradock Containers
6060

6161
```
6262
$root@server:~/laravel/laradock# docker-compose up -d nginx mysql
@@ -248,7 +248,7 @@ View your Site in the Browser Securely Using HTTPS (https://yourdomain.com)
248248
- [Installation](#Installation)
249249
- [Customize laradock/docker-compose.yml](#CustomizeDockerCompose)
250250
- [Clean House](#InstallCleanHouse)
251-
- [LaraDock Dial Tone](#InstallLaraDockDialTone)
251+
- [Laradock Dial Tone](#InstallLaradockDialTone)
252252
- [hosts](#AddToHosts)
253253
- [Firewall](#FireWall)
254254
- [Enable xDebug on php-fpm](#enablePhpXdebug)
@@ -265,14 +265,14 @@ View your Site in the Browser Securely Using HTTPS (https://yourdomain.com)
265265
<a name="Intro"></a>
266266
## Intro
267267

268-
Wiring up [Laravel](https://laravel.com/), [LaraDock](https://github.com/LaraDock/laradock) [Laravel+Docker] and [PHPStorm](https://www.jetbrains.com/phpstorm/) to play nice together complete with remote xdebug'ing as icing on top! Although this guide is based on `PHPStorm Windows`,
268+
Wiring up [Laravel](https://laravel.com/), [Laradock](https://github.com/Laradock/laradock) [Laravel+Docker] and [PHPStorm](https://www.jetbrains.com/phpstorm/) to play nice together complete with remote xdebug'ing as icing on top! Although this guide is based on `PHPStorm Windows`,
269269
you should be able to adjust accordingly. This guide was written based on Docker for Windows Native.
270270

271271
<a name="Installation"></a>
272272
## Installation
273273

274274
- This guide assumes the following:
275-
- you have already installed and are familiar with Laravel, LaraDock and PHPStorm.
275+
- you have already installed and are familiar with Laravel, Laradock and PHPStorm.
276276
- you have installed Laravel as a parent of `laradock`. This guide assumes `/c/_dk/laravel`.
277277

278278
<a name="AddToHosts"></a>
@@ -332,15 +332,15 @@ xdebug.cli_color=1
332332

333333
<a name="InstallCleanHouse"></a>
334334
### Need to clean house first?
335-
Make sure you are starting with a clean state. For example, do you have other LaraDock containers and images?
335+
Make sure you are starting with a clean state. For example, do you have other Laradock containers and images?
336336
Here are a few things I use to clean things up.
337337

338338
- Delete all containers using `grep laradock_` on the names, see: [Remove all containers based on docker image name](https://linuxconfig.org/remove-all-containners-based-on-docker-image-name).
339339
`docker ps -a | awk '{ print $1,$2 }' | grep laradock_ | awk '{print $1}' | xargs -I {} docker rm {}`
340340

341341
- Delete all images containing `laradock`.
342342
`docker images | awk '{print $1,$2,$3}' | grep laradock_ | awk '{print $3}' | xargs -I {} docker rmi {}`
343-
**Note:** This will only delete images that were built with `LaraDock`, **NOT** `laradock/*` which are pulled down by `LaraDock` such as `laradock/workspace`, etc.
343+
**Note:** This will only delete images that were built with `Laradock`, **NOT** `laradock/*` which are pulled down by `Laradock` such as `laradock/workspace`, etc.
344344
**Note:** Some may fail with:
345345
`Error response from daemon: conflict: unable to delete 3f38eaed93df (cannot be forced) - image has dependent child images`
346346

@@ -359,7 +359,7 @@ Here are a few things I use to clean things up.
359359
}
360360
```
361361
362-
- If you frequently switch configurations for LaraDock, you may find that adding the following and added to your `.bashrc` or equivalent useful:
362+
- If you frequently switch configurations for Laradock, you may find that adding the following and added to your `.bashrc` or equivalent useful:
363363
```
364364
# remove laravel* containers
365365
# remove laravel_* images
@@ -383,7 +383,7 @@ dcleanlaradockfunction()
383383
alias dcleanlaradock=dcleanlaradockfunction
384384
```
385385
386-
<a name="InstallLaraDockDialTone"></a>
386+
<a name="InstallLaradockDialTone"></a>
387387
## Let's get a dial-tone with Laravel
388388
389389
```
@@ -408,7 +408,7 @@ laradock_workspace_1 /sbin/my_init Up 0.0.0.0:2222-
408408
409409
<a name="enablePhpXdebug"></a>
410410
## Enable xDebug on php-fpm
411-
In a host terminal sitting in the laradock folder, run: `./xdebugPhpFpm status`
411+
In a host terminal sitting in the laradock folder, run: `.php-fpm/xdebug status`
412412
You should see something like the following:
413413
```
414414
xDebug status
@@ -418,7 +418,7 @@ Copyright (c) 1997-2016 The PHP Group
418418
Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
419419
with Xdebug v2.4.1, Copyright (c) 2002-2016, by Derick Rethans
420420
```
421-
Other commands include `./xdebugPhpFpm start | stop`.
421+
Other commands include `.php-fpm/xdebug start | stop`.
422422
423423
If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will already be running when
424424
`php-fpm` is started and listening for debug info on port 9000.
@@ -503,9 +503,9 @@ If you have enabled `xdebug=true` in `docker-compose.yml/php-fpm`, `xdebug` will
503503
<a name="UsagePHPStormDebugSite"></a>
504504
### Debug WebSite
505505
- In case xDebug is disabled, from the `laradock` folder run:
506-
`./xdebugPhpFpm start`.
506+
`.php-fpm/xdebug start`.
507507
- To switch xdebug off, run:
508-
`./xdebugPhpFpm stop`
508+
`.php-fpm/xdebug stop`
509509
510510
- Start Remote Debugging
511511
- ![DebugRemoteOn](photos/PHPStorm/DebugRemoteOn.png)

README-zh.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# LaraDock
1+
# Laradock
22

33
[![forthebadge](http://forthebadge.com/images/badges/built-by-developers.svg)](http://zalt.me)
44

5-
[![Gitter](https://badges.gitter.im/LaraDock/laradock.svg)](https://gitter.im/LaraDock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
5+
[![Gitter](https://badges.gitter.im/Laradock/laradock.svg)](https://gitter.im/Laradock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
66

7-
LaraDock 能够帮你在 **Docker** 上快速搭建 **Laravel** 应用。
7+
Laradock 能够帮你在 **Docker** 上快速搭建 **Laravel** 应用。
88

99
就像 Laravel Homestead 一样,但是 Docker 替换了 Vagrant。
1010

11-
> 先在使用 LaraDock,然后再学习它们。
11+
> 先在使用 Laradock,然后再学习它们。
1212
1313
## 目录
1414
- [Intro](#Intro)
@@ -17,7 +17,7 @@ LaraDock 能够帮你在 **Docker** 上快速搭建 **Laravel** 应用。
1717
- [What is Docker](#what-is-docker)
1818
- [What is Laravel](#what-is-laravel)
1919
- [Why Docker not Vagrant](#why-docker-not-vagrant)
20-
- [LaraDock VS Homestead](#laradock-vs-homestead)
20+
- [Laradock VS Homestead](#laradock-vs-homestead)
2121
- [Demo Video](#Demo)
2222
- [Requirements](#Requirements)
2323
- [Installation](#Installation)
@@ -49,27 +49,27 @@ LaraDock 能够帮你在 **Docker** 上快速搭建 **Laravel** 应用。
4949
- [Install Prestissimo](#Install-Prestissimo)
5050
- [Install Node + NVM](#Install-Node)
5151
- [Debugging](#debugging)
52-
- [Upgrading LaraDock](#upgrading-laradock)
52+
- [Upgrading Laradock](#upgrading-laradock)
5353
- [Help & Questions](#Help)
5454

5555

5656
<a name="Intro"></a>
5757
## 介绍
5858

59-
LaraDock 努力简化创建开发环境过程。
59+
Laradock 努力简化创建开发环境过程。
6060
它包含预包装 Docker 镜像,提供你一个美妙的开发环境而不需要安装 PHP, NGINX, MySQL 和其他任何软件在你本地机器上。
6161

6262
**使用概览:**
6363

6464
让我们了解使用它安装 `NGINX`, `PHP`, `Composer`, `MySQL``Redis`,然后运行 `Laravel`
6565

66-
1.LaraDock 放到你的 Laravel 项目中:
66+
1.Laradock 放到你的 Laravel 项目中:
6767

6868
```bash
6969
git clone https://github.com/laradock/laradock.git
7070
```
7171

72-
2. 进入 LaraDock 目录,然后运行这些容器。
72+
2. 进入 Laradock 目录,然后运行这些容器。
7373

7474
```bash
7575
docker-compose up -d nginx mysql redis
@@ -142,22 +142,22 @@ docker-compose up -d nginx mysql redis
142142
最重要的是 Docker 可以运行在开发和生产(相同环境无处不在)。Vagrant 是专为开发,(所以在生产环境你必须每一次重建您的服务器)。
143143

144144
<a name="laradock-vs-homestead"></a>
145-
### LaraDock Homestead 对比
145+
### Laradock Homestead 对比
146146

147-
LaraDock and [Homestead](https://laravel.com/docs/master/homestead) 给你一个完整的虚拟开发环境。(不需要安装和配置软件在你自己的每一个操作系统)。
147+
Laradock and [Homestead](https://laravel.com/docs/master/homestead) 给你一个完整的虚拟开发环境。(不需要安装和配置软件在你自己的每一个操作系统)。
148148

149149
Homestead 是一个工具,为你控制虚拟机(使用 Homestead 特殊命令)。Vagrant 可以管理你的管理虚容器。
150150

151-
运行一个虚拟容器比运行一整个虚拟机快多了 **LaraDock 比 Homestead 快多了**
151+
运行一个虚拟容器比运行一整个虚拟机快多了 **Laradock 比 Homestead 快多了**
152152

153153
<a name="Demo"></a>
154154
## 演示视频
155155
还有什么比**演示视频**好:
156156

157-
- LaraDock [v4.0](https://www.youtube.com/watch?v=TQii1jDa96Y)
158-
- LaraDock [v2.2](https://www.youtube.com/watch?v=-DamFMczwDA)
159-
- LaraDock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI)
160-
- LaraDock [v0.1](https://www.youtube.com/watch?v=3YQsHe6oF80)
157+
- Laradock [v4.0](https://www.youtube.com/watch?v=TQii1jDa96Y)
158+
- Laradock [v2.2](https://www.youtube.com/watch?v=-DamFMczwDA)
159+
- Laradock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI)
160+
- Laradock [v0.1](https://www.youtube.com/watch?v=3YQsHe6oF80)
161161

162162
<a name="Requirements"></a>
163163
## 依赖
@@ -168,7 +168,7 @@ Homestead 是一个工具,为你控制虚拟机(使用 Homestead 特殊命令)
168168
<a name="Installation"></a>
169169
## 安装
170170

171-
1 - 克隆 `LaraDock` 仓库:
171+
1 - 克隆 `Laradock` 仓库:
172172

173173
**A)** 如果你已经有一个 Laravel 项目,克隆这个仓库在到 `Laravel` 根目录
174174

@@ -189,9 +189,9 @@ git clone https://github.com/laradock/laradock.git
189189

190190
**请在开始之前阅读:**
191191
如果你正在使用 **Docker Toolbox** (VM),选择以下任何一个方法:
192-
- 更新到 Docker [Native](https://www.docker.com/products/docker) Mac/Windows 版本 (建议). 查看 [Upgrading LaraDock](#upgrading-laradock)
193-
- 使用 LaraDock v3.* (访问 `LaraDock-ToolBox` [分支](https://github.com/laradock/laradock/tree/LaraDock-ToolBox)).
194-
如果您使用的是 **Docker Native**(Mac / Windows 版本)甚至是 Linux 版本,通常可以继续阅读这个文档,LaraDock v4 以上版本将仅支持 **Docker Native**
192+
- 更新到 Docker [Native](https://www.docker.com/products/docker) Mac/Windows 版本 (建议). 查看 [Upgrading Laradock](#upgrading-laradock)
193+
- 使用 Laradock v3.* (访问 `Laradock-ToolBox` [分支](https://github.com/laradock/laradock/tree/Laradock-ToolBox)).
194+
如果您使用的是 **Docker Native**(Mac / Windows 版本)甚至是 Linux 版本,通常可以继续阅读这个文档,Laradock v4 以上版本将仅支持 **Docker Native**
195195

196196
1 - 运行容器: *(在运行 `docker-compose` 命令之前,确认你在 `laradock` 目录中*
197197

@@ -377,7 +377,7 @@ composer create-project laravel/laravel my-cool-app "5.2.*"
377377

378378

379379
3 - 编辑 `docker-compose.yml` 映射新的应用目录:
380-
系统默认 LaraDock 假定 Laravel 应用在 laradock 的父级目录中
380+
系统默认 Laradock 假定 Laravel 应用在 laradock 的父级目录中
381381

382382
更新 Laravel 应用在 `my-cool-app` 目录中, 我们需要用 `../my-cool-app/:/var/www`替换 `../:/var/www` , 如下:
383383

@@ -394,7 +394,7 @@ composer create-project laravel/laravel my-cool-app "5.2.*"
394394
cd my-cool-app
395395
```
396396

397-
5 - 回到 LaraDock 安装步骤,看看如何编辑 `.env` 的文件。
397+
5 - 回到 Laradock 安装步骤,看看如何编辑 `.env` 的文件。
398398

399399
<a name="Run-Artisan-Commands"></a>
400400
### 运行 Artisan 命令
@@ -477,7 +477,7 @@ composer require predis/predis:^1.0
477477
5 - 你可以用以下代码在 Laravel 中手动测试:
478478

479479
```php
480-
\Cache::store('redis')->put('LaraDock', 'Awesome', 10);
480+
\Cache::store('redis')->put('Laradock', 'Awesome', 10);
481481
```
482482

483483
<a name="Use-Mongo"></a>
@@ -766,15 +766,15 @@ sudo chmod -R 777 storage bootstrap/cache
766766
确保你想运行的服务端口(80, 3306, etc.)不是已经被其他程序使用,例如 `apache`/`httpd` 服务或其他安装的开发工具
767767

768768
<a name="upgrading-laradock"></a>
769-
### LaraDock 升级
769+
### Laradock 升级
770770

771771

772-
从 Docker Toolbox (VirtualBox) 移动到 Docker Native (for Mac/Windows),需要从 LaraDock v3.* 升级到 v4.*:
772+
从 Docker Toolbox (VirtualBox) 移动到 Docker Native (for Mac/Windows),需要从 Laradock v3.* 升级到 v4.*:
773773

774774
1. 停止 Docker 虚拟机 `docker-machine stop {default}`
775775
2. 安装 Docker [Mac](https://docs.docker.com/docker-for-mac/) 或 [Windows](https://docs.docker.com/docker-for-windows/).
776-
3. 升级 LaraDock 到 `v4.*.*` (`git pull origin master`)
777-
4. 像之前一样使用 LaraDock: `docker-compose up -d nginx mysql`.
776+
3. 升级 Laradock 到 `v4.*.*` (`git pull origin master`)
777+
4. 像之前一样使用 Laradock: `docker-compose up -d nginx mysql`.
778778

779779
**说明:** 如果你面临任何上面的问题的最后一步:重建你所有的容器
780780
```bash
@@ -791,9 +791,9 @@ docker-compose build --no-cache
791791
<a name="Help"></a>
792792
## 帮助 & 问题
793793

794-
从聊天室 [Gitter](https://gitter.im/LaraDock/laradock) 社区获取帮助和支持.
794+
从聊天室 [Gitter](https://gitter.im/Laradock/laradock) 社区获取帮助和支持.
795795

796-
你也可以打开 Github 上的 [issue](https://github.com/laradock/laradock/issues) (将被贴上问题和答案) 或与大家讨论 [Gitter](https://gitter.im/LaraDock/laradock).
796+
你也可以打开 Github 上的 [issue](https://github.com/laradock/laradock/issues) (将被贴上问题和答案) 或与大家讨论 [Gitter](https://gitter.im/Laradock/laradock).
797797

798798
Docker 或 Laravel 的特别帮助,你可以在 [Codementor.io](https://www.codementor.io/mahmoudz) 上直接和项目创始人在线沟通
799799

docs/documentation/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -607,12 +607,12 @@ <h2 id="start-stop-xdebug">Start/Stop xDebug:</h2>
607607
<p>To control the behavior of xDebug (in the <code>php-fpm</code> Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):</p>
608608

609609
<ul>
610-
<li>Stop xDebug from running by default: <code>./xdebugPhpFpm stop</code>.</li>
611-
<li>Start xDebug by default: <code>./xdebugPhpFpm start</code>.</li>
612-
<li>See the status: <code>./xdebugPhpFpm status</code>.</li>
610+
<li>Stop xDebug from running by default: <code>.php-fpm/xdebug stop</code>.</li>
611+
<li>Start xDebug by default: <code>.php-fpm/xdebug start</code>.</li>
612+
<li>See the status: <code>.php-fpm/xdebug status</code>.</li>
613613
</ul>
614614

615-
<p>Note: If <code>./xdebugPhpFpm</code> doesn&rsquo;t execute and gives <code>Permission Denied</code> error the problem can be that file <code>xdebugPhpFpm</code> doesn&rsquo;t have execution access. This can be fixed by running <code>chmod</code> command with desired access permissions.</p>
615+
<p>Note: If <code>.php-fpm/xdebug</code> doesn&rsquo;t execute and gives <code>Permission Denied</code> error the problem can be that file <code>xdebug</code> doesn&rsquo;t have execution access. This can be fixed by running <code>chmod</code> command with desired access permissions.</p>
616616

617617
<p><br>
618618
<a name="Install-Deployer"></a></p>

docs/documentation/index.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -288,12 +288,12 @@ xdebug.remote_connect_back=1
288288
&lt;p&gt;To control the behavior of xDebug (in the &lt;code&gt;php-fpm&lt;/code&gt; Container), you can run the following commands from the Laradock root folder, (at the same prompt where you run docker-compose):&lt;/p&gt;
289289

290290
&lt;ul&gt;
291-
&lt;li&gt;Stop xDebug from running by default: &lt;code&gt;./xdebugPhpFpm stop&lt;/code&gt;.&lt;/li&gt;
292-
&lt;li&gt;Start xDebug by default: &lt;code&gt;./xdebugPhpFpm start&lt;/code&gt;.&lt;/li&gt;
293-
&lt;li&gt;See the status: &lt;code&gt;./xdebugPhpFpm status&lt;/code&gt;.&lt;/li&gt;
291+
&lt;li&gt;Stop xDebug from running by default: &lt;code&gt;.php-fpm/xdebug stop&lt;/code&gt;.&lt;/li&gt;
292+
&lt;li&gt;Start xDebug by default: &lt;code&gt;.php-fpm/xdebug start&lt;/code&gt;.&lt;/li&gt;
293+
&lt;li&gt;See the status: &lt;code&gt;.php-fpm/xdebug status&lt;/code&gt;.&lt;/li&gt;
294294
&lt;/ul&gt;
295295

296-
&lt;p&gt;Note: If &lt;code&gt;./xdebugPhpFpm&lt;/code&gt; doesn&amp;rsquo;t execute and gives &lt;code&gt;Permission Denied&lt;/code&gt; error the problem can be that file &lt;code&gt;xdebugPhpFpm&lt;/code&gt; doesn&amp;rsquo;t have execution access. This can be fixed by running &lt;code&gt;chmod&lt;/code&gt; command with desired access permissions.&lt;/p&gt;
296+
&lt;p&gt;Note: If &lt;code&gt;.php-fpm/xdebug&lt;/code&gt; doesn&amp;rsquo;t execute and gives &lt;code&gt;Permission Denied&lt;/code&gt; error the problem can be that file &lt;code&gt;xdebug&lt;/code&gt; doesn&amp;rsquo;t have execution access. This can be fixed by running &lt;code&gt;chmod&lt;/code&gt; command with desired access permissions.&lt;/p&gt;
297297

298298
&lt;p&gt;&lt;br&gt;
299299
&lt;a name=&#34;Install-Deployer&#34;&gt;&lt;/a&gt;&lt;/p&gt;
@@ -1248,4 +1248,4 @@ e) set it to &lt;code&gt;true&lt;/code&gt;&lt;/p&gt;
12481248
</item>
12491249

12501250
</channel>
1251-
</rss>
1251+
</rss>

docs/getting-started/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ <h2 id="usage">Usage</h2>
472472

473473
<ul>
474474
<li>Upgrade to Docker <a href="https://www.docker.com/products/docker">Native</a> for Mac/Windows (Recommended). Check out <a href="http://laradock.io/documentation/#upgrading-laradock">Upgrading Laradock</a></li>
475-
<li>Use Laradock v3.*. Visit the <a href="https://github.com/laradock/laradock/tree/LaraDock-ToolBox">LaraDock-ToolBox</a> branch. <em>(outdated)</em></li>
475+
<li>Use Laradock v3.*. Visit the <a href="https://github.com/laradock/laradock/tree/Laradock-ToolBox">Laradock-ToolBox</a> branch. <em>(outdated)</em></li>
476476
</ul>
477477

478478
<p><br></p>

0 commit comments

Comments
 (0)