version: "3.8" services: web: image: nginx:1.20.0 networks: - proxy - internal environment: - DOMAIN - NGINX_WEBSEED_CDN_ENABLED - NGINX_WEBSEED_CDN_URI - NGINX_WEBSEED_PROXY_ENABLED - NGINX_WEBSEED_PROXY_URI - 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 target: /etc/nginx/nginx.conf deploy: restart_policy: condition: on-failure labels: - "traefik.enable=true" - "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80" - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - coop-cloud.${STACK_NAME}.web.version=1.20.0-ea4560b8 app: image: chocobozzz/peertube:v3.2.1-buster environment: - PEERTUBE_ADMIN_EMAIL - PEERTUBE_CONTACT_FORM_ENABLED - PEERTUBE_DB_HOSTNAME=db - PEERTUBE_DB_PASSWORD_FILE=/run/secrets/db_password - PEERTUBE_DB_PORT=5432 - PEERTUBE_DB_USERNAME=peertube - PEERTUBE_REDIS_HOSTNAME=cache - PEERTUBE_SIGNUP_ENABLED - PEERTUBE_TRANSCODING_ENABLED - PEERTUBE_TRUST_PROXY=["127.0.0.1", "loopback", "172.16.0.0/12", "10.0.0.0/8"] - PEERTUBE_WEBSERVER_HOSTNAME=${DOMAIN} - PEERTUBE_WEBSERVER_HTTPS - PEERTUBE_WEBSERVER_PORT volumes: - app-data:/data - app-config:/config - app-assets:/srv/client/dist secrets: - db_password configs: - source: app_entrypoint target: /docker-entrypoint.sh mode: 0555 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: - internal deploy: labels: ["coop-cloud.${STACK_NAME}.app.version=v3.2.1-buster-e4f797ee"] db: image: postgres:10-alpine environment: - POSTGRES_USER=peertube - POSTGRES_PASSWORD_FILE=/run/secrets/db_password - POSTGRES_DB=peertube secrets: - db_password volumes: - postgres-data:/var/lib/postgresql/data networks: - internal deploy: update_config: failure_action: rollback order: start-first labels: ['coop-cloud.${STACK_NAME}.db.version=10-alpine-131220fe'] cache: image: redis:4-alpine volumes: - redis-data:/data networks: - internal deploy: labels: ['coop-cloud.${STACK_NAME}.cache.version=4-alpine-aaf7c123'] networks: internal: 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} file: entrypoint.sh secrets: db_password: external: true name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION}