File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Copy `.env-example` in the project root to `.env` and edit your preferences.
35
35
36
36
Example:
37
37
38
- ``` yml
38
+ ``` dotenv
39
39
IP=127.0.0.1
40
40
APP_NAME=myapp
41
41
DOMAIN="myapp.local"
@@ -52,7 +52,7 @@ Copy `.env-example` in the `src` folder to `.env` and edit your preferences.
52
52
53
53
Use the following database settings:
54
54
55
- ``` yml
55
+ ``` dotenv
56
56
DB_HOST=mysql:3306
57
57
DB_NAME=myapp
58
58
DB_USER=root
@@ -89,17 +89,18 @@ cd cli
89
89
## Install WordPress and Composer dependencies
90
90
91
91
``` shell
92
- docker-compose run composer intall
92
+ cd src
93
+ docker-compose run composer install
93
94
```
94
- > If you have Composer installed on your Mac you can also use ` cd src && composer install `
95
+ > If you have Composer installed on your computer you can also use ` cd src && composer install `
95
96
96
97
## Run
97
98
98
99
``` shell
99
100
docker-compose up -d
100
101
```
101
102
102
- docker-compose will start all the services for you:
103
+ Docker Compose will start all the services for you:
103
104
104
105
105
106
``` shell
You can’t perform that action at this time.
0 commit comments