🔧(compose) rename legacy docker-compose.yml in compose.yaml

The compose configuration preferred filename is now compose.yaml
docker-compose.yml is the legacy one used by docker-compose v1
This commit is contained in:
Manuel Raynaud
2025-01-28 10:41:18 +01:00
parent 0d7d42254b
commit 9179fdb2fa
3 changed files with 5 additions and 7 deletions
+4 -6
View File
@@ -52,12 +52,10 @@ Make sure you have a recent version of Docker and [Docker Compose](https://docs.
```shellscript
$ docker -v
Docker version 27.4.1, build b9d17ea
Docker version 20.10.2, build 2291f61
$ docker compose -v
docker compose version 1.27.4, build 40524192
$ docker compose version
Docker Compose version v2.32.1
```
> ⚠️ You may need to run the following commands with sudo but this can be avoided by assigning your user to the `docker` group.
@@ -170,4 +168,4 @@ docs
Impress is built on top of [Django Rest Framework](https://www.django-rest-framework.org/), [Next.js](https://nextjs.org/), [MinIO](https://min.io/) and [BlocNote.js](https://www.blocknotejs.org/)
### States ❤️ open source
Docs is the result of a joint effort lead by the French 🇫🇷🥖 ([DINUM](https://www.numerique.gouv.fr/dinum/)) and German 🇩🇪🥨 government ([ZenDiS](https://zendis.de/)). We are always looking for new public partners feel free to reach out if you are interested in using or contributing to docs.
Docs is the result of a joint effort lead by the French 🇫🇷🥖 ([DINUM](https://www.numerique.gouv.fr/dinum/)) and German 🇩🇪🥨 government ([ZenDiS](https://zendis.de/)). We are always looking for new public partners feel free to reach out if you are interested in using or contributing to docs.
+1 -1
View File
@@ -6,7 +6,7 @@ REPO_DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd)"
UNSET_USER=0
TERRAFORM_DIRECTORY="./env.d/terraform"
COMPOSE_FILE="${REPO_DIR}/docker-compose.yml"
COMPOSE_FILE="${REPO_DIR}/compose.yaml"
COMPOSE_PROJECT="docs"
View File