aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/docker.md
diff options
context:
space:
mode:
Diffstat (limited to 'support/doc/docker.md')
-rw-r--r--support/doc/docker.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/support/doc/docker.md b/support/doc/docker.md
index e3f9b5477..5d950d477 100644
--- a/support/doc/docker.md
+++ b/support/doc/docker.md
@@ -97,7 +97,7 @@ docker-compose exec -u peertube peertube npm run reset-password -- -u root
97You can also grep your peertube container's logs for the default `root` password. 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. 97You can also grep your peertube container's logs for the default `root` password. 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.
98 98
99```bash 99```bash
100$ docker-compose logs peertube | grep -A1 root 100docker-compose logs peertube | grep -A1 root
101 101
102peertube_1 | [example.com:443] 2019-11-16 04:26:06.082 info: Username: root 102peertube_1 | [example.com:443] 2019-11-16 04:26:06.082 info: Username: root
103peertube_1 | [example.com:443] 2019-11-16 04:26:06.083 info: User password: abcdefghijklmnop 103peertube_1 | [example.com:443] 2019-11-16 04:26:06.083 info: User password: abcdefghijklmnop
@@ -110,7 +110,7 @@ peertube_1 | [example.com:443] 2019-11-16 04:26:06.083 info: User password: abc
110Run `cat ./docker-volume/opendkim/keys/*/*.txt` to display your DKIM DNS TXT Record containing the public key to configure to your domain : 110Run `cat ./docker-volume/opendkim/keys/*/*.txt` to display your DKIM DNS TXT Record containing the public key to configure to your domain :
111 111
112```bash 112```bash
113$ cat ./docker-volume/opendkim/keys/*/*.txt 113cat ./docker-volume/opendkim/keys/*/*.txt
114 114
115peertube._domainkey.mydomain.tld. IN TXT ( "v=DKIM1; h=sha256; k=rsa; " 115peertube._domainkey.mydomain.tld. IN TXT ( "v=DKIM1; h=sha256; k=rsa; "
116 "p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0Dx7wLGPFVaxVQ4TGym/eF89aQ8oMxS9v5BCc26Hij91t2Ci8Fl12DHNVqZoIPGm+9tTIoDVDFEFrlPhMOZl8i4jU9pcFjjaIISaV2+qTa8uV1j3MyByogG8pu4o5Ill7zaySYFsYB++cHJ9pjbFSC42dddCYMfuVgrBsLNrvEi3dLDMjJF5l92Uu8YeswFe26PuHX3Avr261n" 116 "p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0Dx7wLGPFVaxVQ4TGym/eF89aQ8oMxS9v5BCc26Hij91t2Ci8Fl12DHNVqZoIPGm+9tTIoDVDFEFrlPhMOZl8i4jU9pcFjjaIISaV2+qTa8uV1j3MyByogG8pu4o5Ill7zaySYFsYB++cHJ9pjbFSC42dddCYMfuVgrBsLNrvEi3dLDMjJF5l92Uu8YeswFe26PuHX3Avr261n"
@@ -132,20 +132,20 @@ See the production guide ["What now" section](https://docs.joinpeertube.org/inst
132Pull the latest images: 132Pull the latest images:
133 133
134```shell 134```shell
135$ cd /your/peertube/directory 135cd /your/peertube/directory
136$ docker-compose pull 136docker-compose pull
137``` 137```
138 138
139Stop, delete the containers and internal volumes (to invalidate static client files shared by `peertube` and `webserver` containers): 139Stop, delete the containers and internal volumes (to invalidate static client files shared by `peertube` and `webserver` containers):
140 140
141```shell 141```shell
142$ docker-compose down -v 142docker-compose down -v
143``` 143```
144 144
145Rerun PeerTube: 145Rerun PeerTube:
146 146
147```shell 147```shell
148$ docker-compose up -d 148docker-compose up -d
149``` 149```
150 150
151## Build 151## Build
@@ -153,9 +153,9 @@ $ docker-compose up -d
153### Production 153### Production
154 154
155```shell 155```shell
156$ git clone https://github.com/chocobozzz/PeerTube /tmp/peertube 156git clone https://github.com/chocobozzz/PeerTube /tmp/peertube
157$ cd /tmp/peertube 157cd /tmp/peertube
158$ docker build . -f ./support/docker/production/Dockerfile.bullseye 158docker build . -f ./support/docker/production/Dockerfile.bullseye
159``` 159```
160 160
161### Development 161### Development