diff options
Diffstat (limited to 'support/doc')
-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 | ||