diff options
author | 2022-04-29 21:11:10 +0200 | |
---|---|---|
committer | 2022-04-29 21:11:10 +0200 | |
commit | 4851ffe11ba992f7d4804fab23b3e58877014dba (patch) | |
tree | 8007f4e1e9ccbb9f2b299ec15ec31c71ce6264c8 /docs/installation_guide/docker.md | |
parent | [chore] Add Federatingactor.Send() tests and log call (#509) (diff) | |
download | gotosocial-4851ffe11ba992f7d4804fab23b3e58877014dba.tar.xz |
[documentation] Recommend users take latest *stable* release in installation guides (#512)
* add note about release version number
* recommend users take latest stable release
Diffstat (limited to 'docs/installation_guide/docker.md')
-rw-r--r-- | docs/installation_guide/docker.md | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/docs/installation_guide/docker.md b/docs/installation_guide/docker.md index 85db274c1..8342f7893 100644 --- a/docs/installation_guide/docker.md +++ b/docs/installation_guide/docker.md @@ -60,7 +60,23 @@ nano docker-compose.yaml Now, you should change the `GTS_HOST` environment variable to the domain you are running GoToSocial on. -If you want to use [LetsEncrypt](../configuration/letsencrypt.md) for ssl certificates (https), you should: +You should also update the GoToSocial version number to use the latest stable release. + +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 release (without the leading `v` or trailing version name). So for example if you want to run [v0.3.1 Sleepy Sloth](https://github.com/superseriousbusiness/gotosocial/releases/tag/v0.3.1) you should replace: + +```text +image: superseriousbusiness/gotosocial:latest +``` + +with: + +```text +image: superseriousbusiness/gotosocial:0.3.1 +``` + +If you want to use [LetsEncrypt](../configuration/letsencrypt.md) for ssl certificates (https), you should also: 1. Change the value of `GTS_LETSENCRYPT_ENABLED` to `"true"`. 2. Remove the `#` before `- "80:80"` in the `ports` section. |