diff options
-rw-r--r-- | support/doc/docker.md | 4 | ||||
-rw-r--r-- | support/docker/production/docker-compose.yml | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/support/doc/docker.md b/support/doc/docker.md index 36da94f55..e9315293f 100644 --- a/support/doc/docker.md +++ b/support/doc/docker.md | |||
@@ -63,8 +63,6 @@ intuited from usage. | |||
63 | Install the template that the nginx container will use. | 63 | Install the template that the nginx container will use. |
64 | The container will generate the configuration by replacing `${WEBSERVER_HOST}` and `${PEERTUBE_HOST}` using your docker compose env file. | 64 | The container will generate the configuration by replacing `${WEBSERVER_HOST}` and `${PEERTUBE_HOST}` using your docker compose env file. |
65 | 65 | ||
66 | It will also generate a TLS certificate at startup and schedule a renew | ||
67 | |||
68 | ```shell | 66 | ```shell |
69 | mkdir -p docker-volume/nginx | 67 | mkdir -p docker-volume/nginx |
70 | curl https://raw.githubusercontent.com/Chocobozzz/PeerTube/develop/support/nginx/peertube > docker-volume/nginx/peertube | 68 | curl https://raw.githubusercontent.com/Chocobozzz/PeerTube/develop/support/nginx/peertube > docker-volume/nginx/peertube |
@@ -77,7 +75,7 @@ mkdir -p docker-volume/certbot | |||
77 | docker run -it --rm --name certbot -p 80:80 -v "$(pwd)/docker-volume/certbot/conf:/etc/letsencrypt" certbot/certbot certonly --standalone | 75 | docker run -it --rm --name certbot -p 80:80 -v "$(pwd)/docker-volume/certbot/conf:/etc/letsencrypt" certbot/certbot certonly --standalone |
78 | ``` | 76 | ``` |
79 | 77 | ||
80 | The docker-compose will automatically renew this certificate and reload nginx. | 78 | A dedicated container in the docker-compose will automatically renew this certificate and reload nginx. |
81 | 79 | ||
82 | 80 | ||
83 | #### Test your setup | 81 | #### Test your setup |
diff --git a/support/docker/production/docker-compose.yml b/support/docker/production/docker-compose.yml index 4ad1a8756..e23f31c39 100644 --- a/support/docker/production/docker-compose.yml +++ b/support/docker/production/docker-compose.yml | |||
@@ -46,6 +46,11 @@ services: | |||
46 | # context: . | 46 | # context: . |
47 | # dockerfile: ./support/docker/production/Dockerfile.buster | 47 | # dockerfile: ./support/docker/production/Dockerfile.buster |
48 | image: chocobozzz/peertube:production-buster | 48 | image: chocobozzz/peertube:production-buster |
49 | # Use a static IP for this container because nginx does not handle proxy host change without reload | ||
50 | # This container could be restarted on crash or until the postgresql database is ready for connection | ||
51 | networks: | ||
52 | default: | ||
53 | ipv4_address: 172.18.0.42 | ||
49 | env_file: | 54 | env_file: |
50 | - .env | 55 | - .env |
51 | # If you provide your own webserver and reverse-proxy, otherwise not suitable for production: | 56 | # If you provide your own webserver and reverse-proxy, otherwise not suitable for production: |