Table of content:
To update the stack - first of all stop the stack:
docker compose down
Then issue a git pull:
git pull
# if errors occured you can issue a stash before:
git stash
git pull
Finally, rebuild the containers
docker compose build --no-cache
And finally restart the stack
docker compose up -d