summaryrefslogtreecommitdiff
path: root/docs/installation_guide/docker.md
diff options
context:
space:
mode:
authorLibravatar Phil Hagelberg <phil@hagelb.org>2022-11-25 09:56:01 -0800
committerLibravatar GitHub <noreply@github.com>2022-11-25 18:56:01 +0100
commit8b0c92ec41c8c26e23836c999b9b9e02ed65ddf1 (patch)
treeaab2bc735c61d4a41a75f193f2bc7ccc81478883 /docs/installation_guide/docker.md
parent[feature] Add `admin media prune orphaned` CLI command (#1146) (diff)
downloadgotosocial-8b0c92ec41c8c26e23836c999b9b9e02ed65ddf1.tar.xz
[docs] Explain that before 0.6.0, account confirm was necessary. (#1149)
Since the documentation site only shows the latest version of the docs, we need the docs to explain how to use the latest stable release, not just the latest git version.
Diffstat (limited to 'docs/installation_guide/docker.md')
-rw-r--r--docs/installation_guide/docker.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/installation_guide/docker.md b/docs/installation_guide/docker.md
index c3d0a5bfe..e752ac750 100644
--- a/docs/installation_guide/docker.md
+++ b/docs/installation_guide/docker.md
@@ -171,6 +171,14 @@ First create a user (replace the username, email, and password with appropriate
docker exec -it gotosocial /gotosocial/gotosocial admin account create --username some_username --email someone@example.org --password 'some_very_good_password'
```
+If you are running a version older than 0.6.0, you will need to manually confirm as well:
+
+```bash
+./gotosocial --config-path ./config.yaml admin account confirm --username some_username
+```
+
+Replace `some_username` with the username of the account you just created.
+
Now promote the user you just created to admin privileges:
```bash