feat: add piped-bg-helper to all compose templates and enable by default

This commit is contained in:
Bnyro 2025-03-01 12:35:23 +01:00
parent cc60cca2d4
commit 6eb033f83e
No known key found for this signature in database
4 changed files with 18 additions and 2 deletions

View File

@ -68,6 +68,9 @@ MATRIX_SERVER:https://matrix-client.matrix.org
# Geo Restriction Checker for federated bypassing of Geo Restrictions
#GEO_RESTRICTION_CHECKER_URL:INSERT_HERE
# BG Helper URL for supplying PoTokens
BG_HELPER_URL:http://bg-helper:3000
# S3 Configuration Data (compatible with any provider that offers an S3 compatible API)
#S3_ENDPOINT:INSERT_HERE
#S3_ACCESS_KEY:INSERT_HERE

View File

@ -24,6 +24,10 @@ services:
depends_on:
- postgres
container_name: piped-backend
bg-helper:
image: 1337kavin/bg-helper-server:latest
restart: unless-stopped
container_name: piped-bg-helper
nginx:
image: nginx:mainline-alpine
restart: unless-stopped
@ -65,7 +69,7 @@ services:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
container_name: watchtower
command: piped-frontend piped-backend piped-proxy nginx caddy postgres watchtower
command: piped-frontend piped-backend piped-proxy piped-bg-helper nginx caddy postgres watchtower
volumes:
caddy_data: null
piped-proxy: null

View File

@ -24,6 +24,10 @@ services:
depends_on:
- postgres
container_name: piped-backend
bg-helper:
image: 1337kavin/bg-helper-server:latest
restart: unless-stopped
container_name: piped-bg-helper
nginx:
image: nginx:mainline-alpine
restart: unless-stopped
@ -66,6 +70,6 @@ services:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_INCLUDE_RESTARTING=true
container_name: watchtower
command: piped-frontend piped-backend piped-proxy varnish nginx postgres watchtower
command: piped-frontend piped-backend piped-proxy piped-bg-helper varnish nginx postgres watchtower
volumes:
piped-proxy: null

View File

@ -29,6 +29,11 @@ services:
- "8082:8080"
container_name: piped-proxy
bg-helper:
image: 1337kavin/bg-helper-server:latest
restart: unless-stopped
container_name: piped-bg-helper
postgres:
image: pgautoupgrade/pgautoupgrade:16-alpine
restart: unless-stopped