Fix commands

`docker compose ecs` to `docker ecs compose`
This commit is contained in:
Laurens Vanderhoven 2020-07-10 08:22:13 +02:00 committed by GitHub
parent 03f8c63994
commit eb8880f1fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -57,9 +57,9 @@ You can deploy and manage multi-container applications defined in Compose files
- Ensure you are using your AWS context. You can do this either by specifying the `--context aws` flag with your command, or by setting the current context using the command `docker context use aws`.
- Run `docker compose ecs up` and `docker compose ecs down` to start and then stop a full Compose application.
- Run `docker ecs compose up` and `docker ecs compose down` to start and then stop a full Compose application.
By default, `docker compose ecs up` uses the `docker-compose.yaml` file in the current folder. You can specify the Compose file directly using the `--file` flag.
By default, `docker ecs compose up` uses the `docker-compose.yaml` file in the current folder. You can specify the Compose file directly using the `--file` flag.
You can also specify a name for the Compose application using the `--project-name` flag during deployment. If no name is specified, a name will be derived from the working directory.