Skip to content

Commit 951150b

Browse files
authored
docs(): Fix an outdated command (docker-compose)
1. There are examples using `docker-compose ...`; so, this commit replaces all mentions of `docker-compose ...` with `docker compose ...` because the latest version of Docker now ships with `docker compose` instead of `docker-compose`. 2. ("your docker-compose" -> "your Compose file) While reading the official Docker documentation, I noticed that they normally call it a Compose file.
1 parent 3329c55 commit 951150b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ [email protected]
142142
FLARUM_TITLE=Test flarum
143143
```
144144

145-
Run your docker-compose
145+
Run your Compose file
146146

147147
```sh
148-
docker-compose up -d mariadb
148+
docker compose up -d mariadb
149149
# Wait a moment for the creation of the database
150-
docker-compose up -d flarum
150+
docker compose up -d flarum
151151
```
152152

153153
* :warning: Your admin password must contain at least **8 characters** (FLARUM_ADMIN_PASS).

0 commit comments

Comments
 (0)