Make docker-compose consistently docker compose

This commit is contained in:
Kay Kaprolat 2021-12-09 22:43:18 +01:00 committed by GitHub
parent ecbf886e52
commit 67ca452993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,9 +13,9 @@
3. Update other values in the `.env` file as need (be sure to update passwords!)
4. Run `docker compose up -d --build`
5. Run `docker compose exec darkflame /app/MasterServer -a` and setup your admin account
6. Now you can see the output of the server with `docker compose logs -f --tail 100` or `docker compose logs -f --tail 100`. This can help you understand issues and there you can also see when the server finishes it's startup. Exit this with Ctrl+C.
6. Now you can see the output of the server with `docker compose logs -f --tail 100`. This can help you understand issues and there you can also see when the server finishes it's startup. Exit this with Ctrl+C.
7. You're ready to connect your client!
8. You can stop the server with `docker-compose stop` and start it again with `docker-compose up -d`.
8. You can stop the server with `docker compose stop` and start it again with `docker compose up -d`.
## Disable brickbuildfix
@ -31,4 +31,4 @@ services:
- donotstart
```
3. Now run `docker compose up -d --build` or `docker-compose up -d --build`
3. Now run `docker compose up -d --build`.