diff options
author | Leopere <1068374+Leopere@users.noreply.github.com> | 2019-11-16 07:41:15 -0500 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-11-18 09:43:25 +0100 |
commit | 76d5770b7a6c12802287dff401b455b26ad08266 (patch) | |
tree | d75db20d0f626ed8ed947d42a6fe11161d9bb605 | |
parent | e2882b2ccba99f9cf94878f597b24c5185560a86 (diff) | |
download | PeerTube-76d5770b7a6c12802287dff401b455b26ad08266.tar.gz PeerTube-76d5770b7a6c12802287dff401b455b26ad08266.tar.zst PeerTube-76d5770b7a6c12802287dff401b455b26ad08266.zip |
Clarify and expand on admin credentials detail
It felt unclear so I clarified and suggested a method for obtaining the credentials easier.
-rw-r--r-- | support/doc/docker.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/support/doc/docker.md b/support/doc/docker.md index 7ee6d65fe..4dd1eab4a 100644 --- a/support/doc/docker.md +++ b/support/doc/docker.md | |||
@@ -50,9 +50,15 @@ You can use the regular `up` command to set it up: | |||
50 | ```shell | 50 | ```shell |
51 | $ docker-compose up | 51 | $ docker-compose up |
52 | ``` | 52 | ``` |
53 | 53 | ### Obtaining Your Automatically Generated Admin Credentials | |
54 | **Important**: note that you'll get the initial `root` user password from the | 54 | Now that you've installed your PeerTube instance you'll want to grep your peertube container's logs for the `root` password. |
55 | program output, so check out your logs to find them. | 55 | You're going to want to run `docker-compose logs peertube | grep -A1 root` to search the log output for your new PeerTube's instance admin credentials which will look something like this. |
56 | ```BASH | ||
57 | user@s:~/peertube|master⚡ ⇒ docker-compose logs peertube | grep -A1 root | ||
58 | |||
59 | peertube_1 | [example.com:443] 2019-11-16 04:26:06.082 info: Username: root | ||
60 | peertube_1 | [example.com:443] 2019-11-16 04:26:06.083 info: User password: abcdefghijklmnop | ||
61 | ``` | ||
56 | 62 | ||
57 | ### What now? | 63 | ### What now? |
58 | 64 | ||