diff --git a/README.md b/README.md index dc341c06..925b264f 100644 --- a/README.md +++ b/README.md @@ -61,23 +61,17 @@ Have a look at our contributing guidelines [here](/CONTRIBUTING.md). # Working with Docker -With the current Dockerfile and Docker compose, you can build everything with: +- Run the web server: ```bash -docker-compose -f docker-compose.dev.yml build +docker compose up app ``` - -Then, you can -- Run the web server with: -```bash -docker-compose -f docker-compose.dev.yml up app -``` -- Run ruff checks with: +- Run ruff checks: ```bash -docker-compose -f docker-compose.dev.yml run --rm ruff +docker compose run --rm ruff ``` -- Launch the container cli (for ewample to update translations): +- Launch the container CLI (for ewample to update translations): ```bash -docker-compose -f docker-compose.dev.yml run --rm cli +docker compose run --rm cli ``` diff --git a/docker-compose.dev.yml b/docker-compose.yml similarity index 100% rename from docker-compose.dev.yml rename to docker-compose.yml