Various improvements for docker-compose
This commit is contained in:
parent
0f49023061
commit
fef13f1480
4 changed files with 18 additions and 4 deletions
|
@ -63,7 +63,6 @@ Pull the latest images and rerun PeerTube:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ cd /your/peertube/directory
|
$ cd /your/peertube/directory
|
||||||
$ docker-compose down
|
|
||||||
$ docker-compose pull
|
$ docker-compose pull
|
||||||
$ docker-compose up -d
|
$ docker-compose up -d
|
||||||
```
|
```
|
||||||
|
|
|
@ -9,7 +9,7 @@ PEERTUBE_TRUST_PROXY=["127.0.0.1"]
|
||||||
#PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "192.168.1.0/24"]
|
#PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "192.168.1.0/24"]
|
||||||
PEERTUBE_SMTP_USERNAME=
|
PEERTUBE_SMTP_USERNAME=
|
||||||
PEERTUBE_SMTP_PASSWORD=
|
PEERTUBE_SMTP_PASSWORD=
|
||||||
PEERTUBE_SMTP_HOSTNAME=
|
PEERTUBE_SMTP_HOSTNAME=postfix
|
||||||
PEERTUBE_SMTP_PORT=25
|
PEERTUBE_SMTP_PORT=25
|
||||||
PEERTUBE_SMTP_FROM=noreply@domain.tld
|
PEERTUBE_SMTP_FROM=noreply@domain.tld
|
||||||
PEERTUBE_SMTP_TLS=true
|
PEERTUBE_SMTP_TLS=true
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
# Uncomment this line in order to enable debugging through logs
|
# Uncomment this line in order to enable debugging through logs
|
||||||
# debug = true
|
# debug = true
|
||||||
defaultEntryPoints = ["http", "https"]
|
defaultEntryPoints = ["http", "https"]
|
||||||
|
|
||||||
[entryPoints]
|
[entryPoints]
|
||||||
[entryPoints.http]
|
[entryPoints.http]
|
||||||
address = ":80"
|
address = ":80"
|
||||||
|
[entryPoints.http.redirect]
|
||||||
|
entryPoint = "https"
|
||||||
[entryPoints.https]
|
[entryPoints.https]
|
||||||
address = ":443"
|
address = ":443"
|
||||||
[entryPoints.https.tls]
|
[entryPoints.https.tls]
|
||||||
|
|
|
@ -4,16 +4,19 @@ services:
|
||||||
|
|
||||||
reverse-proxy:
|
reverse-proxy:
|
||||||
image: traefik
|
image: traefik
|
||||||
command: --api --docker # Enables the web UI and tells Træfik to listen to docker
|
command: --docker # Tells Træfik to listen to docker
|
||||||
ports:
|
ports:
|
||||||
- "80:80" # The HTTP port
|
- "80:80" # The HTTP port
|
||||||
- "443:443" # The HTTPS port
|
- "443:443" # The HTTPS port
|
||||||
- "8080:8080" # The Web UI (enabled by --api)
|
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events
|
- /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events
|
||||||
- ./docker-volume/traefik/acme.json:/etc/acme.json
|
- ./docker-volume/traefik/acme.json:/etc/acme.json
|
||||||
- ./docker-volume/traefik/traefik.toml:/traefik.toml
|
- ./docker-volume/traefik/traefik.toml:/traefik.toml
|
||||||
restart: "always"
|
restart: "always"
|
||||||
|
# If you want to use the Traefik dashboard, you should expose it on a
|
||||||
|
# subdomain with HTTPS and authentification:
|
||||||
|
# https://medium.com/@xavier.priour/secure-traefik-dashboard-with-https-and-password-in-docker-5b657e2aa15f
|
||||||
|
# https://github.com/containous/traefik/issues/880#issuecomment-310301168
|
||||||
|
|
||||||
peertube:
|
peertube:
|
||||||
# If you don't want to use the official image and build one from sources
|
# If you don't want to use the official image and build one from sources
|
||||||
|
@ -38,6 +41,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
- redis
|
- redis
|
||||||
|
- postfix
|
||||||
restart: "always"
|
restart: "always"
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
|
@ -59,3 +63,11 @@ services:
|
||||||
restart: "always"
|
restart: "always"
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: "false"
|
traefik.enable: "false"
|
||||||
|
|
||||||
|
postfix:
|
||||||
|
image: mwader/postfix-relay
|
||||||
|
environment:
|
||||||
|
- POSTFIX_myhostname=${PEERTUBE_WEBSERVER_HOSTNAME}
|
||||||
|
labels:
|
||||||
|
traefik.enable: "false"
|
||||||
|
restart: "always"
|
||||||
|
|
Loading…
Reference in a new issue