peertube/compose.yml

122 lines
3.5 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 22:32:11 +00:00
- NGINX_WEBSEED_CDN_ENABLED
2021-05-06 08:47:52 +00:00
- NGINX_WEBSEED_CDN_URI
2021-05-06 22:32:11 +00:00
- NGINX_WEBSEED_PROXY_ENABLED
2021-05-06 08:47:52 +00:00
- NGINX_WEBSEED_PROXY_URI
2021-05-06 23:41:31 +00:00
- STACK_NAME
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
2021-05-06 22:15:43 +00:00
target: /etc/nginx/nginx.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}"
2021-05-30 13:01:30 +00:00
- coop-cloud.${STACK_NAME}.web.version=1.20.0-ea4560b8
app:
2021-06-23 10:58:20 +00:00
image: chocobozzz/peertube:v3.2.1-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
2021-06-04 06:31:49 +00:00
- PEERTUBE_DB_PORT=5432
2021-05-06 09:07:23 +00:00
- 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:/srv/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
healthcheck:
test: 'nodejs -e "http.get(''http://localhost:9000/api/v1/ping'', (res) => { console.log(''status: '', res.statusCode); if (res.statusCode == 200) { process.exit(0); } else { process.exit(1); } });"'
interval: 1m
timeout: 30s
retries: 3
start_period: 1m
entrypoint: /docker-entrypoint.sh
networks:
2021-05-05 15:30:52 +00:00
- internal
2021-05-30 13:01:30 +00:00
deploy:
2021-06-23 10:58:20 +00:00
labels: ["coop-cloud.${STACK_NAME}.app.version=v3.2.1-buster-e4f797ee"]
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-30 13:01:30 +00:00
deploy:
update_config:
failure_action: rollback
order: start-first
2021-06-23 10:47:13 +00:00
labels: ['coop-cloud.${STACK_NAME}.db.version=10-alpine-131220fe']
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-05-30 13:01:30 +00:00
deploy:
2021-06-23 10:47:13 +00:00
labels: ['coop-cloud.${STACK_NAME}.cache.version=4-alpine-aaf7c123']
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}