chore(docs): change docker-compose to docker compose (#3007)

* update docker compose

* fix swag docker compose indentation

* and again....

* indentation for the second docker compose in the swag guide
This commit is contained in:
Kuchenpirat
2024-01-19 17:01:37 +01:00
committed by GitHub
parent 6acadbc52b
commit d17e46ee50
6 changed files with 51 additions and 53 deletions

View File

@@ -72,7 +72,7 @@ After you've decided setup the files it's important to set a few ENV variables t
After you've configured your database and updated the `docker-compose.yaml` files, you can start Mealie by running the following command in the directory where you've added your `docker-compose.yaml`.
```bash
$ docker-compose up -d
$ docker compose up -d
```
You should see the containers start up without error. You should now be able to access the Mealie frontend at [http://localhost:9925](http://localhost:9925).

View File

@@ -19,6 +19,6 @@ If you are upgrading from pre-v1.0.0 to v1.0.0, make sure you read [Migrating to
## Docker
For all setups using Docker the updating process looks something like this
- Stop the container using `docker-compose down`
- Pull the latest image using `docker-compose pull`
- Start the container again using `docker-compose up -d`
- Stop the container using `docker compose down`
- Pull the latest image using `docker compose pull`
- Start the container again using `docker compose up -d`