2018-01-29 08:52:20 +01:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
2018-05-28 10:53:57 +02:00
|
|
|
reverse-proxy:
|
|
|
|
image: traefik
|
2019-04-24 16:28:56 +02:00
|
|
|
network_mode: "host"
|
2018-11-21 15:35:26 +01:00
|
|
|
command: --docker # Tells Træfik to listen to docker
|
2018-05-28 10:53:57 +02:00
|
|
|
ports:
|
|
|
|
- "80:80" # The HTTP port
|
|
|
|
- "443:443" # The HTTPS port
|
|
|
|
volumes:
|
|
|
|
- /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/traefik.toml:/traefik.toml
|
|
|
|
restart: "always"
|
2019-04-24 16:28:56 +02:00
|
|
|
# If you want to use the Traefik dashboard, you should expose it on a
|
2018-11-21 15:35:26 +01:00
|
|
|
# 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
|
2018-05-28 10:53:57 +02:00
|
|
|
|
2018-03-15 14:39:04 +01:00
|
|
|
peertube:
|
2018-05-07 10:51:44 +02:00
|
|
|
# If you don't want to use the official image and build one from sources
|
|
|
|
# build:
|
|
|
|
# context: .
|
|
|
|
# dockerfile: ./support/docker/production/Dockerfile.stretch
|
2018-04-03 09:04:35 +02:00
|
|
|
image: chocobozzz/peertube:production-stretch
|
2018-08-14 10:13:17 +02:00
|
|
|
env_file:
|
|
|
|
- .env
|
2018-01-29 08:52:20 +01:00
|
|
|
# Traefik labels are suggested as an example for people using Traefik,
|
|
|
|
# remove them if you are using another reverse proxy.
|
|
|
|
labels:
|
|
|
|
traefik.enable: "true"
|
2018-05-07 18:39:42 +02:00
|
|
|
traefik.frontend.rule: "Host:${PEERTUBE_WEBSERVER_HOSTNAME}"
|
2018-01-29 08:52:20 +01:00
|
|
|
traefik.port: "9000"
|
2018-04-16 18:44:57 +02:00
|
|
|
# If you don't want to use a reverse proxy (not suitable for production!)
|
|
|
|
# ports:
|
|
|
|
# - "80:9000"
|
2018-01-29 08:52:20 +01:00
|
|
|
volumes:
|
2018-05-07 18:39:42 +02:00
|
|
|
- ./docker-volume/data:/data
|
|
|
|
- ./docker-volume/config:/config
|
2018-01-29 08:52:20 +01:00
|
|
|
depends_on:
|
2018-03-15 14:39:04 +01:00
|
|
|
- postgres
|
|
|
|
- redis
|
2018-11-21 15:35:26 +01:00
|
|
|
- postfix
|
2018-03-15 14:39:04 +01:00
|
|
|
restart: "always"
|
2018-01-29 08:52:20 +01:00
|
|
|
|
2018-03-15 14:39:04 +01:00
|
|
|
postgres:
|
2018-03-22 14:08:55 +01:00
|
|
|
image: postgres:10-alpine
|
2018-01-29 08:52:20 +01:00
|
|
|
environment:
|
2018-08-14 10:13:17 +02:00
|
|
|
POSTGRES_USER: ${PEERTUBE_DB_USERNAME}
|
|
|
|
POSTGRES_PASSWORD: ${PEERTUBE_DB_PASSWORD}
|
2018-03-15 14:39:04 +01:00
|
|
|
POSTGRES_DB: peertube
|
2018-01-29 08:52:20 +01:00
|
|
|
volumes:
|
2018-05-07 18:39:42 +02:00
|
|
|
- ./docker-volume/db:/var/lib/postgresql/data
|
2018-03-15 14:39:04 +01:00
|
|
|
restart: "always"
|
2018-05-28 10:53:57 +02:00
|
|
|
labels:
|
|
|
|
traefik.enable: "false"
|
2018-03-15 14:39:04 +01:00
|
|
|
|
|
|
|
redis:
|
2018-03-22 14:08:55 +01:00
|
|
|
image: redis:4-alpine
|
2018-03-15 14:39:04 +01:00
|
|
|
volumes:
|
2018-05-07 18:39:42 +02:00
|
|
|
- ./docker-volume/redis:/data
|
2018-03-15 14:39:04 +01:00
|
|
|
restart: "always"
|
2018-05-28 10:53:57 +02:00
|
|
|
labels:
|
2018-06-02 08:36:49 +02:00
|
|
|
traefik.enable: "false"
|
2018-11-21 15:35:26 +01:00
|
|
|
|
|
|
|
postfix:
|
|
|
|
image: mwader/postfix-relay
|
|
|
|
environment:
|
|
|
|
- POSTFIX_myhostname=${PEERTUBE_WEBSERVER_HOSTNAME}
|
|
|
|
labels:
|
|
|
|
traefik.enable: "false"
|
|
|
|
restart: "always"
|
2019-05-21 12:25:00 +02:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
ipam:
|
|
|
|
driver: default
|
|
|
|
config:
|
|
|
|
- subnet: 172.18.0.0/16
|