summaryrefslogtreecommitdiff
path: root/docs/getting_started/installation/container.md
diff options
context:
space:
mode:
authorLibravatar Daenney <daenney@users.noreply.github.com>2023-12-05 11:44:10 +0100
committerLibravatar GitHub <noreply@github.com>2023-12-05 11:44:10 +0100
commit5556767ff73befa2ebe800d18099849bc79f3301 (patch)
tree259990277ee9f4034b8e838db99e4d1c1625bf81 /docs/getting_started/installation/container.md
parent[bugfix/chore] `Announce` reliability updates (#2405) (diff)
downloadgotosocial-5556767ff73befa2ebe800d18099849bc79f3301.tar.xz
[docs] Change configuration creation instructions (#2408)
* [docs] Change configuration creation instructions This changes the wording to push people towards creating their own configuration, without copying the whole example configuration. This makes it much easier to reconcile necessary configruation changes on upgrades. * [docs] Reword container version section This changes the wording in the Version section to make it more clear what the risks of a moving tag are. It pushes people to use an explicit release tag instead.
Diffstat (limited to 'docs/getting_started/installation/container.md')
-rw-r--r--docs/getting_started/installation/container.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/getting_started/installation/container.md b/docs/getting_started/installation/container.md
index c14e0a999..ff98c4105 100644
--- a/docs/getting_started/installation/container.md
+++ b/docs/getting_started/installation/container.md
@@ -38,14 +38,14 @@ nano docker-compose.yaml
### Version
-If desired, update the GoToSocial Docker image tag to the version of GtS you want to use.
+If desired, update the GoToSocial Docker image tag to the version of GtS you want to use:
-`latest` - the default. This points to the latest stable release of GoToSocial.
-
-`snapshot` - points to whatever code is currently on the main branch. Not guaranteed to be stable, and may often be broken. Use with caution.
+* `latest`: the default. This points to the latest stable release of GoToSocial.
+* `snapshot`: points to whatever code is currently on the main branch. Not guaranteed to be stable, and may often be broken. Use with caution.
+* `vX.Y.Z`: release tag. This points to a specific, stable, release of GoToSocial.
!!! tip
- You can also replace `latest` with a specific GoToSocial version number. This is recommended when you want to make sure that you don't update your GoToSocial version by accident, which can cause problems. The list of releases can be found [right here](https://github.com/superseriousbusiness/gotosocial/releases), with the newest release at the top. Replace `latest` in the docker-compose.yaml with the number of the desired release (without the leading `v` or trailing version name).
+ Both the `latest` and `snapshot` tags are moving tags, whereas the `vX.Y.Z` tags are immutable. The result of pulling a moving tag might change from day to day. `latest` on one system might not be the same `latest` on a different system. It's recommended to use the `vX.Y.Z` tags instead so you always know exactly which version of GoToSocial you're running. The list of releases can be found [right here](https://github.com/superseriousbusiness/gotosocial/releases), with the newest release at the top.
### Host