File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 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.
3535
3636Example:
3737
38- ``` yml
38+ ``` dotenv
3939IP=127.0.0.1
4040APP_NAME=myapp
4141DOMAIN="myapp.local"
@@ -52,7 +52,7 @@ Copy `.env-example` in the `src` folder to `.env` and edit your preferences.
5252
5353Use the following database settings:
5454
55- ``` yml
55+ ``` dotenv
5656DB_HOST=mysql:3306
5757DB_NAME=myapp
5858DB_USER=root
@@ -89,17 +89,18 @@ cd cli
8989## Install WordPress and Composer dependencies
9090
9191``` shell
92- docker-compose run composer intall
92+ cd src
93+ docker-compose run composer install
9394```
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 `
9596
9697## Run
9798
9899``` shell
99100docker-compose up -d
100101```
101102
102- docker-compose will start all the services for you:
103+ Docker Compose will start all the services for you:
103104
104105
105106``` shell
You can’t perform that action at this time.
0 commit comments