summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2021-04-25 15:51:40 +0200
committerGitHub <noreply@github.com>2021-04-25 15:51:40 +0200
commitd9c7bee36c02eab54e655c7356457b93055013b5 (patch)
treeb5d2dcc6e15d7ca6993e5d184eac7ed1afcaaf2a
parent214a2c7fae44aed08a62dc4674c5c056c7ba5faf (diff)
downloadwiki-d9c7bee36c02eab54e655c7356457b93055013b5.tar.gz
wiki-d9c7bee36c02eab54e655c7356457b93055013b5.tar.bz2
wiki-d9c7bee36c02eab54e655c7356457b93055013b5.zip
chore: use docker-compose until docker compose is supported by all platforms
-rw-r--r--docs/database-only-quick-setup.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/database-only-quick-setup.md b/docs/database-only-quick-setup.md
index 5b7a5c5..ef7d5fb 100644
--- a/docs/database-only-quick-setup.md
+++ b/docs/database-only-quick-setup.md
@@ -30,7 +30,7 @@ cd azerothcore-wotlk;
You can easily create an instance of MySQL server containing the AC database using:
```
-docker compose up -d ac-database
+docker-compose up -d ac-database
```
The default password will be `password` and the default port will be `3306`.
@@ -38,12 +38,12 @@ The default password will be `password` and the default port will be `3306`.
If you want to change those values, run the following instead:
```
-DOCKER_DB_EXTERNAL_PORT=9000 DOCKER_DB_ROOT_PASSWORD=root docker compose up -d ac-database
+DOCKER_DB_EXTERNAL_PORT=9000 DOCKER_DB_ROOT_PASSWORD=root docker-compose up -d ac-database
```
After the db service is up and running, use the following command to import the database
-`docker compose run --rm ac-dev-server ./acore.sh db-assembler import-all`
+`docker-compose run --rm ac-dev-server ./acore.sh db-assembler import-all`
This will import all the sql files needed to setup your database
@@ -54,6 +54,6 @@ This will import all the sql files needed to setup your database
You can destroy the containers created with docker-compose using:
```
-docker compose down
+docker-compose down
```