]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/docker.md
Translated using Weblate (Croatian)
[github/Chocobozzz/PeerTube.git] / support / doc / docker.md
CommitLineData
4df6a1b8
C
1# Docker guide
2
b8f3e6b0 3This guide requires [docker](https://www.docker.com/community-edition) and
a30995fc 4[docker-compose](https://docs.docker.com/compose/install/).
4df6a1b8 5
f930450a 6## Install
4df6a1b8 7
83d4aba6 8**PeerTube does not support webserver host change**. Keep in mind your domain
b8f3e6b0 9name is definitive after your first PeerTube start.
4df6a1b8 10
a30995fc
RK
11#### Go to your workdir
12
13_note_: the guide that follows assumes an empty workdir, but you can also clone the repository, use the master branch and `cd support/docker/production`.
b44a9630 14
e962e1c3 15```shell
b8f3e6b0 16cd /your/peertube/directory
e962e1c3
K
17```
18
19#### Get the latest Compose file
20
21```shell
c9595426 22curl https://raw.githubusercontent.com/chocobozzz/PeerTube/master/support/docker/production/docker-compose.yml > docker-compose.yml
e962e1c3
K
23```
24
c9595426 25View the source of the file you're about to download: [docker-compose.yml](https://github.com/Chocobozzz/PeerTube/blob/master/support/docker/production/docker-compose.yml)
e962e1c3 26
e962e1c3
K
27#### Get the latest env_file
28
29```shell
c9595426 30curl https://raw.githubusercontent.com/Chocobozzz/PeerTube/master/support/docker/production/.env > .env
e962e1c3
K
31```
32
c9595426 33View the source of the file you're about to download: [.env](https://github.com/Chocobozzz/PeerTube/blob/master/support/docker/production/.env)
e962e1c3 34
e962e1c3
K
35#### Tweak the `docker-compose.yml` file there according to your needs
36
37```shell
85ae7291 38sudo nano docker-compose.yml
e962e1c3
K
39```
40
a30995fc 41#### Then tweak the `.env` file to change the environment variables settings
e962e1c3
K
42
43```shell
85ae7291 44sudo nano .env
e962e1c3 45```
b8f3e6b0 46
c9595426 47In the downloaded example [.env](https://github.com/Chocobozzz/PeerTube/blob/master/support/docker/production/.env), you must replace:
e962e1c3
K
48- `<MY POSTGRES USERNAME>`
49- `<MY POSTGRES PASSWORD>`
e962e1c3
K
50- `<MY DOMAIN>` without 'https://'
51- `<MY EMAIL ADDRESS>`
1ea868a9 52- `<MY PEERTUBE SECRET>`
ef48a0d5
BB
53
54Other environment variables are used in
c9595426 55[/support/docker/production/config/custom-environment-variables.yaml](https://github.com/Chocobozzz/PeerTube/blob/master/support/docker/production/config/custom-environment-variables.yaml) and can be
ef48a0d5
BB
56intuited from usage.
57
afd4ee86 58#### Webserver
e962e1c3 59
afd4ee86
C
60*The docker compose file includes a configured web server. You can skip this part and comment the appropriate section in the docker compose if you use another webserver/proxy.*
61
62Install the template that the nginx container will use.
63The container will generate the configuration by replacing `${WEBSERVER_HOST}` and `${PEERTUBE_HOST}` using your docker compose env file.
64
afd4ee86
C
65```shell
66mkdir -p docker-volume/nginx
c9595426 67curl https://raw.githubusercontent.com/Chocobozzz/PeerTube/master/support/nginx/peertube > docker-volume/nginx/peertube
e962e1c3 68```
afd4ee86
C
69
70You need to manually generate the first SSL/TLS certificate using Let's Encrypt:
71
72```shell
73mkdir -p docker-volume/certbot
74docker run -it --rm --name certbot -p 80:80 -v "$(pwd)/docker-volume/certbot/conf:/etc/letsencrypt" certbot/certbot certonly --standalone
e962e1c3
K
75```
76
0a0e0d08 77A dedicated container in the docker-compose will automatically renew this certificate and reload nginx.
afd4ee86
C
78
79
80#### Test your setup
81
85ae7291 82_note_: Newer versions of compose are called with `docker compose` instead of `docker-compose`, so remove the dash in all steps that use this command if you are getting errors.
83
afd4ee86 84Run your containers:
f83e339b
FP
85
86```shell
e962e1c3 87docker-compose up
f83e339b 88```
b8f3e6b0 89
f930450a 90#### Obtaining your automatically-generated admin credentials
b8f3e6b0 91
85ae7291 92You can change the automatically created password for user root by running this command from peertube's root directory:
93```shell
94docker-compose exec -u peertube peertube npm run reset-password -- -u root
95```
96
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.
b8f3e6b0
RK
98
99```bash
a30995fc 100$ docker-compose logs peertube | grep -A1 root
76d5770b
L
101
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
104```
ef48a0d5 105
f930450a 106#### Obtaining Your Automatically Generated DKIM DNS TXT Record
b8f3e6b0 107
cd7ec86f 108[DKIM](https://en.wikipedia.org/wiki/DomainKeys_Identified_Mail) signature sending and RSA keys generation are enabled by the default Postfix image `mwader/postfix-relay` with [OpenDKIM](http://www.opendkim.org/).
b8f3e6b0 109
83d4aba6 110Run `cat ./docker-volume/opendkim/keys/*/*.txt` to display your DKIM DNS TXT Record containing the public key to configure to your domain :
b8f3e6b0
RK
111
112```bash
a30995fc 113$ cat ./docker-volume/opendkim/keys/*/*.txt
cd7ec86f 114
115peertube._domainkey.mydomain.tld. IN TXT ( "v=DKIM1; h=sha256; k=rsa; "
116 "p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0Dx7wLGPFVaxVQ4TGym/eF89aQ8oMxS9v5BCc26Hij91t2Ci8Fl12DHNVqZoIPGm+9tTIoDVDFEFrlPhMOZl8i4jU9pcFjjaIISaV2+qTa8uV1j3MyByogG8pu4o5Ill7zaySYFsYB++cHJ9pjbFSC42dddCYMfuVgrBsLNrvEi3dLDMjJF5l92Uu8YeswFe26PuHX3Avr261n"
117 "j5joTnYwat4387VEUyGUnZ0aZxCERi+ndXv2/wMJ0tizq+a9+EgqIb+7lkUc2XciQPNuTujM25GhrQBEKznvHyPA6fHsFheymOuB763QpkmnQQLCxyLygAY9mE/5RY+5Q6J9oDOQIDAQAB" ) ; ----- DKIM key peertube for mydomain.tld
118```
119
f930450a 120#### Administrator password
23cbb0f3 121
f44cd95c 122See the production guide ["Administrator" section](https://docs.joinpeertube.org/install/any-os#administrator)
23cbb0f3 123
f930450a 124#### What now?
57c36b27 125
f44cd95c 126See the production guide ["What now" section](https://docs.joinpeertube.org/install/any-os#what-now).
57c36b27 127
f930450a 128## Upgrade
b44a9630 129
6905da7a 130**Check the changelog (in particular the *IMPORTANT NOTES* section):** https://github.com/Chocobozzz/PeerTube/blob/develop/CHANGELOG.md
e359e88b 131
b826b339 132Pull the latest images:
b44a9630 133
f83e339b 134```shell
9007daff 135$ cd /your/peertube/directory
b44a9630 136$ docker-compose pull
14d3bb9c 137```
b826b339
C
138
139Stop, delete the containers and internal volumes (to invalidate static client files shared by `peertube` and `webserver` containers):
140
141```shell
142$ docker-compose down -v
143```
144
145Rerun PeerTube:
146
147```shell
f83e339b 148$ docker-compose up -d
b44a9630
C
149```
150
f930450a
C
151## Build
152
153### Production
b44a9630 154
f83e339b 155```shell
b44a9630
C
156$ git clone https://github.com/chocobozzz/PeerTube /tmp/peertube
157$ cd /tmp/peertube
1606ac20 158$ docker build . -f ./support/docker/production/Dockerfile.bullseye
b44a9630
C
159```
160
f930450a 161### Development
4df6a1b8 162
83d4aba6 163We don't have a Docker image for development. See [the CONTRIBUTING guide](https://github.com/Chocobozzz/PeerTube/blob/develop/.github/CONTRIBUTING.md#develop) for more information on how you can hack PeerTube!