2019-03-11 10:28:12 -04:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
services:
|
2019-07-14 18:10:48 -04:00
|
|
|
nginx:
|
|
|
|
image: nginx:1.17-alpine
|
2019-03-11 10:28:12 -04:00
|
|
|
ports:
|
2020-04-01 12:37:31 -04:00
|
|
|
- "80:80"
|
|
|
|
- "443:443"
|
2019-03-20 19:34:40 -04:00
|
|
|
volumes:
|
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
2019-07-14 18:10:48 -04:00
|
|
|
- ./volumes/certbot/:/var/www/certbot/
|
|
|
|
- /etc/letsencrypt/:/etc/letsencrypt/:ro
|
2019-07-10 17:56:26 -04:00
|
|
|
- ./volumes-large:/data-external:ro
|
2019-03-20 19:34:40 -04:00
|
|
|
depends_on:
|
|
|
|
- peertube
|
|
|
|
restart: "always"
|
|
|
|
|
2019-03-11 10:28:12 -04:00
|
|
|
peertube:
|
2020-04-01 12:37:31 -04:00
|
|
|
image: chocobozzz/peertube:{{ peertube_version }}-buster
|
2019-03-11 10:28:12 -04:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
volumes:
|
2019-03-12 09:50:38 -04:00
|
|
|
- ./volumes/data:/data
|
|
|
|
- ./volumes/config:/config
|
2019-06-12 07:52:03 -04:00
|
|
|
- ./volumes-large:/data-external
|
2019-04-10 15:43:16 -04:00
|
|
|
environment:
|
|
|
|
- PEERTUBE_DB_USERNAME=${POSTGRES_USER}
|
|
|
|
- PEERTUBE_DB_PASSWORD=${POSTGRES_PASSWORD}
|
2019-03-11 10:28:12 -04:00
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
- redis
|
|
|
|
- postfix
|
|
|
|
restart: "always"
|
|
|
|
|
|
|
|
postgres:
|
|
|
|
image: postgres:10-alpine
|
|
|
|
volumes:
|
2019-03-12 09:50:38 -04:00
|
|
|
- ./volumes/db:/var/lib/postgresql/data
|
2019-04-10 15:43:16 -04:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
2019-03-20 19:34:40 -04:00
|
|
|
restart: "always"
|
2019-03-11 10:28:12 -04:00
|
|
|
|
|
|
|
redis:
|
|
|
|
image: redis:5-alpine
|
|
|
|
volumes:
|
2019-03-12 09:50:38 -04:00
|
|
|
- ./volumes/redis:/data
|
2019-03-20 19:34:40 -04:00
|
|
|
restart: "always"
|
2019-03-11 10:28:12 -04:00
|
|
|
|
|
|
|
postfix:
|
|
|
|
image: mwader/postfix-relay
|
|
|
|
environment:
|
|
|
|
- POSTFIX_myhostname=${PEERTUBE_WEBSERVER_HOSTNAME}
|
|
|
|
restart: "always"
|
2019-05-21 06:22:31 -04:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
ipam:
|
|
|
|
driver: default
|
|
|
|
config:
|
|
|
|
- subnet: 172.18.0.0/16
|