1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-19 07:18:06 +02:00

Adopt Compose v2 (#240)

* Adopt Compose v2

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De loof 2022-05-10 11:59:25 +02:00 committed by GitHub
parent bc95525543
commit 667bd9facb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
79 changed files with 237 additions and 237 deletions

View file

@ -84,12 +84,12 @@ deploying samples of containerized applications with Docker Compose.
### Running a sample
The root directory of each sample contains the `docker-compose.yaml` which
The root directory of each sample contains the `compose.yaml` which
describes the configuration of service components. All samples can be run in
a local environment by going into the root directory of each one and executing:
```console
docker-compose up -d
docker compose up -d
```
Check the `README.md` of each sample to get more details on the structure and
@ -97,7 +97,7 @@ what is the expected output.
To stop and remove all containers of the sample application run:
```console
docker-compose down
docker compose down
```
<!--lint disable awesome-toc-->
## Contribute