Skip to content

Commit a7afa7e

Browse files
committed
add installation fixes in README.md
1 parent e3ad825 commit a7afa7e

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,29 @@
1212
## Instructions
1313
1. You need to add the string to `hosts` file your OS:
1414
`127.0.0.1 wp-docker-boilerplate.local`
15+
2. Check that you use `docker compose standalone`.
16+
```bash
17+
# Check it by running command
18+
docker-compose --version
19+
```
20+
You should see a message like this `Docker Compose version v2.18.1`.
21+
In case you don't see the message, follow the instruction by the link
22+
https://docs.docker.com/compose/install/standalone/ and install `docker compose standalone`.
23+
3. Run next commands
1524
```bash
16-
# copy & paste and fill variables
17-
cp .env.dist .env
25+
# copy & paste and fill variables
26+
cp .env.dist .env
1827

19-
# run docker project
20-
make d.up
28+
# run docker project
29+
make d.up
2130

22-
# install Composer dependencies
23-
make composer.install
31+
# install wordpress dependencies
32+
make composer.install
2433

25-
# install wordpress
26-
make wp.core.download
34+
# download wordpress
35+
make wp.core.download
2736
```
28-
2. Visit site [wp-docker-boilerplate.local](http://wp-docker-boilerplate.local)
37+
4. Visit site [wp-docker-boilerplate.local](http://wp-docker-boilerplate.local)
2938

3039
### Import/Export DB
3140

0 commit comments

Comments
 (0)