You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DOCUMENTATION/content/documentation/index.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -232,7 +232,7 @@ By default **PHP-FPM 7.0** is running.
232
232
php-fpm:
233
233
build:
234
234
context: ./php-fpm
235
-
dockerfile: Dockerfile-70
235
+
dockerfile: Dockerfile-56
236
236
...
237
237
```
238
238
@@ -331,7 +331,7 @@ For information on how to configure xDebug with your IDE and work it out, check
331
331
<aname="Setup remote debugging for PhpStorm on Linux"></a>
332
332
## Setup remote debugging for PhpStorm on Linux
333
333
334
-
- Make sure you have followed the steps above in the [Install Xdebug section](http://laradock.io/documentation/#install-xdebug).
334
+
- Make sure you have followed the steps above in the [Install Xdebug section](http://laradock.io/documentation/#install-xdebug).
335
335
336
336
- Make sure Xdebug accepts connections and listens on port 9000. (Should be default configuration).
337
337
@@ -946,7 +946,7 @@ To install CodeIgniter 3 on Laradock all you have to do is the following simple
946
946
<aname="Install-Symfony"></a>
947
947
## Install Symfony
948
948
949
-
1 - Open the `.env` file and set `WORKSPACE_INSTALL_SYMFONY` to `true`.
949
+
1 - Open the `.env` file and set `WORKSPACE_INSTALL_SYMFONY` to `true`.
950
950
951
951
2 - Run `docker-compose build workspace`, after the step above.
952
952
@@ -1449,7 +1449,7 @@ You can use the d4m-nfs solution in 2 ways, one is using the Laradock built it i
1449
1449
1450
1450
#### B.1: using the built in d4m-nfs integration
1451
1451
1452
-
In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers.
1452
+
In simple terms, docker-sync creates a docker container with a copy of all the application files that can be accessed very quickly from the other containers.
1453
1453
On the other hand, docker-sync runs a process on the host machine that continuously tracks and updates files changes from the host to this intermediate container.
1454
1454
1455
1455
Out of the box, it comes pre-configured for OS X, but using it on Windows is very easy to set-up by modifying the `DOCKER_SYNC_STRATEGY` on the `.env`
3) Start docker-sync and the Laradock environment.
1476
+
3) Start docker-sync and the Laradock environment.
1477
1477
Specify the services you want to run, as you would normally do with `docker-compose up`
1478
1478
```bash
1479
1479
./sync.sh up nginx mysql
@@ -1486,7 +1486,7 @@ Please note that the first time docker-sync runs, it will copy all the files to
1486
1486
1487
1487
##### Setting up Aliases (optional)
1488
1488
1489
-
You may create bash profile aliases to avoid having to remember and type these commands for everyday development.
1489
+
You may create bash profile aliases to avoid having to remember and type these commands for everyday development.
1490
1490
Add the following lines to your `~/.bash_profile`:
1491
1491
1492
1492
```bash
@@ -1495,11 +1495,11 @@ alias devbash="cd /PATH_TO_LARADOCK/laradock; ./sync.sh bash"
1495
1495
alias devdown="cd /PATH_TO_LARADOCK/laradock; ./sync.sh down"
1496
1496
```
1497
1497
1498
-
Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`.
1498
+
Now from any location on your machine, you can simply run `devup`, `devbash` and `devdown`.
1499
1499
1500
1500
1501
1501
##### Additional Commands
1502
-
1502
+
1503
1503
Opening bash on the workspace container (to run artisan for example):
1504
1504
```bash
1505
1505
./sync.sh bash
@@ -1516,7 +1516,7 @@ Removing and cleaning up the files and the docker-sync container. Use only if yo
1516
1516
1517
1517
##### Additional Notes
1518
1518
1519
-
- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used.
1519
+
- You may run laradock with or without docker-sync at any time using with the same `.env` and `docker-compose.yml`, because the configuration is overridden automatically when docker-sync is used.
1520
1520
- You may inspect the `sync.sh` script to learn each of the commands and even add custom ones.
1521
1521
- If a container cannot access the files on docker-sync, you may need to set a user on the Dockerfile of that container with an id of 1000 (this is the UID that nginx and php-fpm have configured on laradock). Alternatively, you may change the permissions to 777, but this is **not** recommended.
0 commit comments