diff options
Diffstat (limited to 'docs/installation_guide/docker.md')
-rw-r--r-- | docs/installation_guide/docker.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/installation_guide/docker.md b/docs/installation_guide/docker.md index aa98403ee..c3d0a5bfe 100644 --- a/docs/installation_guide/docker.md +++ b/docs/installation_guide/docker.md @@ -163,7 +163,7 @@ time=2022-04-19T09:48:36Z level=info msg=listening on 0.0.0.0:8080 ### Create your first User -Now that GoToSocial is running, you can execute commands inside the running container to create, confirm, and promote your admin user. +Now that GoToSocial is running, you can execute commands inside the running container to create and promote your admin user. First create a user (replace the username, email, and password with appropriate values): @@ -171,12 +171,6 @@ 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' ``` -Now confirm the user, replacing username with the value you used in the command above. - -```bash -docker exec -it gotosocial /gotosocial/gotosocial admin account confirm --username some_username -``` - Now promote the user you just created to admin privileges: ```bash |