diff --git a/Develop.md b/Develop.md index f49174b..32413f0 100644 --- a/Develop.md +++ b/Develop.md @@ -196,7 +196,8 @@ If you use the signal backend it should print the QRCode to scan at startup ; yo Once done, `docker compose down` will stop the bot by clearing everything from Fargate. -As this method relies on a docker-compose file it is very straightforward, but also limited to the supported mapping with *CloudFormation* templates (the native AWS deployment descriptor) and AWS's choice of services (Fargate, EFS, ...). +As this method relies on the *docker-compose* specification, it is very straightforward and also works on a developer workstation (simply replace `docker compose` with `docker-compose`). +However it cannot go beyond the supported mappings with *CloudFormation* templates (the native AWS deployment descriptor) and AWS's choice of services (Fargate, EFS, ...). More info : diff --git a/alpine.Dockerfile b/alpine.Dockerfile index f42b70f..c6cab27 100644 --- a/alpine.Dockerfile +++ b/alpine.Dockerfile @@ -12,7 +12,7 @@ # STAGE 1 : Builder image # -# This builder must have a Python version comptabile with the final image +# This builder must have a Python version compatible with the final image # So built artifacts will work FROM python:3-alpine as builder