peertube/compose.yml

113 lines
2.8 KiB
YAML
Raw Normal View History

2021-03-19 13:32:35 +00:00
---
version: "3.8"
services:
2021-05-05 15:28:12 +00:00
web:
2021-05-06 22:13:42 +00:00
image: nginx:1.20.0
2021-03-19 13:32:35 +00:00
networks:
- proxy
2021-05-05 15:30:52 +00:00
- internal
2021-05-06 08:47:52 +00:00
environment:
2021-05-06 14:31:31 +00:00
- DOMAIN
2021-05-06 08:47:52 +00:00
- NGINX_WEBSEED_CDN_ENABLE
- NGINX_WEBSEED_CDN_URI
- NGINX_WEBSEED_PROXY_ENABLE
- NGINX_WEBSEED_PROXY_URI
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- app-data:/var/www/peertube/storage:ro
- app-assets:/var/www/peertube/peertube-latest/client/dist:ro
- nginx-tmp:/var/lib/nginx/client-tmp:rw
- nginx-cache:/var/cache/nginx/peertube-media-cache:rw
configs:
- source: nginx_config
target: /etc/nginx/conf.d/default.conf
2021-03-19 13:32:35 +00:00
deploy:
restart_policy:
condition: on-failure
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80"
2021-05-05 15:34:05 +00:00
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
2021-03-19 13:32:35 +00:00
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
app:
2021-05-05 15:34:11 +00:00
image: chocobozzz/peertube:v3.1.0-buster
environment:
2021-05-06 08:47:52 +00:00
- PEERTUBE_ADMIN_EMAIL
- PEERTUBE_CONTACT_FORM_ENABLED
2021-05-06 09:07:23 +00:00
- PEERTUBE_DB_HOSTNAME=db
- PEERTUBE_DB_PASSWORD_FILE=/run/secrets/db_password
- PEERTUBE_DB_USERNAME=peertube
- PEERTUBE_REDIS_HOSTNAME=cache
2021-05-06 08:47:52 +00:00
- PEERTUBE_SIGNUP_ENABLED
- PEERTUBE_TRANSCODING_ENABLED
2021-05-06 12:48:08 +00:00
- PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.16.0.0/12", "10.0.0.0/8"]
2021-05-06 09:12:29 +00:00
- PEERTUBE_WEBSERVER_HOSTNAME=${DOMAIN}
2021-05-06 08:47:52 +00:00
- PEERTUBE_WEBSERVER_HTTPS
- PEERTUBE_WEBSERVER_PORT
volumes:
- app-data:/data
- app-config:/config
- app-assets:/app/client/dist
secrets:
- db_password
configs:
2021-05-06 09:13:46 +00:00
- source: app_entrypoint
target: /docker-entrypoint.sh
mode: 0555
2021-05-06 13:34:21 +00:00
command: npm start
entrypoint: /docker-entrypoint.sh
networks:
2021-05-05 15:30:52 +00:00
- internal
2021-03-19 13:32:35 +00:00
db:
image: postgres:10-alpine
environment:
2021-05-06 09:07:23 +00:00
- POSTGRES_USER=peertube
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password
- POSTGRES_DB=peertube
secrets:
- db_password
volumes:
- postgres-data:/var/lib/postgresql/data
networks:
2021-05-05 15:30:52 +00:00
- internal
2021-05-05 15:28:12 +00:00
cache:
image: redis:4-alpine
volumes:
- redis-data:/data
networks:
2021-05-05 15:30:52 +00:00
- internal
2021-03-19 13:32:35 +00:00
networks:
2021-05-05 15:30:52 +00:00
internal:
2021-03-19 13:32:35 +00:00
proxy:
external: true
volumes:
app-data:
app-config:
app-assets:
nginx-tmp:
nginx-cache:
postgres-data:
redis-data:
configs:
nginx_config:
name: ${STACK_NAME}_nginx_config_${NGINX_CONFIG_VERSION}
file: nginx.conf.tmpl
template_driver: golang
app_entrypoint:
name: ${STACK_NAME}_app_entrypoint_${APP_ENTRYPOINT_VERSION}
2021-05-06 13:16:51 +00:00
file: entrypoint.sh
secrets:
db_password:
external: true
name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}