docs: clarify docker-compose-image-tag instructions (#33045)

This commit is contained in:
Maxime Beauchemin
2025-04-09 08:59:07 -07:00
committed by GitHub
parent 3a57857707
commit 9280b4d2a9

View File

@@ -112,7 +112,15 @@ docker compose -f docker-compose-non-dev.yml up
### Option #3 - boot up an official release
```bash
# Set the version you want to run
export TAG=3.1.1
# Fetch the tag you're about to check out (assuming you shallow-cloned the repo)
git fetch --depth=1 origin tag $TAG
# Could also fetch all tags too if you've got bandwidth to spare
# git fetch --tags
# Checkout the corresponding git ref
git checkout $TAG
# Fire up docker compose
docker compose -f docker-compose-image-tag.yml up
```