2018-01-29 01:52:20 -06:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
2018-03-15 08:39:04 -05:00
|
|
|
peertube:
|
|
|
|
build:
|
2018-03-23 05:22:26 -05:00
|
|
|
context: .
|
|
|
|
dockerfile: ./Dockerfile.stretch
|
2018-03-28 06:45:24 -05:00
|
|
|
image: chocobozzz/peertube:stretch
|
2018-01-29 01:52:20 -06:00
|
|
|
environment:
|
|
|
|
PEERTUBE_HOSTNAME: my.domain.tld
|
|
|
|
PEERTUBE_PORT: 443
|
2018-03-15 08:39:04 -05:00
|
|
|
PEERTUBE_HTTPS: "true"
|
2018-01-29 01:52:20 -06:00
|
|
|
PEERTUBE_ADMIN_EMAIL: admin@domain.tld
|
2018-03-15 08:39:04 -05:00
|
|
|
PEERTUBE_DB_HOSTNAME: postgres
|
|
|
|
PEERTUBE_DB_USERNAME: postgres_user
|
|
|
|
PEERTUBE_DB_PASSWORD: postgres_password
|
|
|
|
PEERTUBE_SIGNUP_ENABLED: "true"
|
|
|
|
PEERTUBE_TRANSCODING_ENABLED: "true"
|
|
|
|
PEERTUBE_REDIS_HOSTNAME: redis
|
2018-03-23 05:22:26 -05:00
|
|
|
PEERTUBE_SMTP_HOSTNAME: null
|
2018-03-15 08:39:04 -05:00
|
|
|
PEERTUBE_SMTP_PORT: 25
|
|
|
|
PEERTUBE_SMTP_FROM: noreply@peertube.domain.tld
|
|
|
|
PEERTUBE_SMTP_TLS: "true"
|
2018-01-29 01:52:20 -06: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"
|
|
|
|
traefik.frontend.rule: "Host:${PEERTUBE_HOSTNAME}"
|
|
|
|
traefik.port: "9000"
|
|
|
|
volumes:
|
2018-03-22 10:59:49 -05:00
|
|
|
- ./data:/data
|
2018-01-29 01:52:20 -06:00
|
|
|
depends_on:
|
2018-03-15 08:39:04 -05:00
|
|
|
- postgres
|
|
|
|
- redis
|
|
|
|
restart: "always"
|
2018-01-29 01:52:20 -06:00
|
|
|
|
2018-03-15 08:39:04 -05:00
|
|
|
postgres:
|
2018-03-22 08:08:55 -05:00
|
|
|
image: postgres:10-alpine
|
2018-01-29 01:52:20 -06:00
|
|
|
environment:
|
2018-03-15 08:39:04 -05:00
|
|
|
POSTGRES_USER: postgres_user
|
|
|
|
POSTGRES_PASSWORD: postgres_password
|
|
|
|
POSTGRES_DB: peertube
|
2018-01-29 01:52:20 -06:00
|
|
|
volumes:
|
|
|
|
- ./db:/var/lib/postgresql/data
|
2018-03-15 08:39:04 -05:00
|
|
|
restart: "always"
|
|
|
|
|
|
|
|
redis:
|
2018-03-22 08:08:55 -05:00
|
|
|
image: redis:4-alpine
|
2018-03-15 08:39:04 -05:00
|
|
|
volumes:
|
|
|
|
- ./redis:/data
|
|
|
|
restart: "always"
|