Files
bigbox-docker/invidious/docker-compose.yml
bigboxuser 82a84240eb Sm shit changed
- new config on dozzle, gitea, invidious, ollama
- gossa file server
- scripts to poweron/update all dockers
2025-10-25 10:40:29 +03:00

125 lines
3.6 KiB
YAML

version: "3"
services:
postgres_triple:
container_name: postgres_triple
image: postgres:9.5
volumes:
- pgdata_triple:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
postgres:
container_name: postgres
image: postgres:9.5
volumes:
- pgdata:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
collectiwise:
container_name: collectiwise
build: .
image: collectiwise/main
ports:
- "8090:80"
environment:
- DB_HOST=postgres
- COLLECTIWISE_BRANCH=${BRANCH}
volumes:
pgdata:
pgdata_triple:version: "3"
services:
invidious:
image: quay.io/invidious/invidious:latest
restart: unless-stopped
ports:
- "4000:3000"
environment:
# Please read the following file for a comprehensive list of all available
# configuration options and their associated syntax:
# https://github.com/iv-org/invidious/blob/master/config/config.example.yml
INVIDIOUS_CONFIG: |
db:
dbname: invidious
user: kemal
password: kemal
host: invidious-db
port: 5432
check_tables: true
#signature_server: inv_sig_helper:12999
visitor_data: CgtYSm5kUWRVZVE1ZyiI19DFBjInCgJSTxIhEh0SGwsMDg8QERITFBUWFxgZGhscHR4fICEiIyQlJiBF
po_token: MpgBecKBkgtBf495_hSk7H5v2KKh-AqptAyHbebX8yIGmiAdCdWMqjxK-5Tj_M_N_ATC0_338CYGDbdFPWV10VlDLhX5K2rgzdva9hD4AMVfcSBZalgO8Wmgly5ynp2tTwll3kgbRJXpz1nJNc-mrUnd0qIKsqigJvJet1RxUzWNc0cVCnRdhhplKd8ms7jDuSCnHaWglT3M6d0=
quality: dash
quality_dash: auto
local: true
invidious_companion:
- private_url: "http://companion:8282/companion"
#- public_url: "http://localhost:8282"
invidious_companion_key: "FcmLBRw5p3SkVjuR"
# external_port:
# domain:
# https_only: false
# statistics_enabled: false
hmac_key: "4xEaLg0fzfvolth1Tq+wJstoZuF3mkURi5PmgzPeqlo="
use_innertube_for_captions: true
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:4000/api/v1/trending || exit 1
interval: 30s
timeout: 5s
retries: 2
logging:
options:
max-size: "1G"
max-file: "4"
depends_on:
- invidious-db
companion:
image: quay.io/invidious/invidious-companion:latest
environment:
- SERVER_SECRET_KEY=FcmLBRw5p3SkVjuR
restart: unless-stopped
#ports:
#- "127.0.0.1:8282:8282"
logging:
options:
max-size: "1G"
max-file: "4"
cap_drop:
- ALL
read_only: true
volumes:
- companioncache:/var/tmp/youtubei.js:rw
security_opt:
- no-new-privileges:true
# inv_sig_helper:
# image: quay.io/invidious/inv-sig-helper:latest
# init: true
# command: ["--tcp", "0.0.0.0:12999"]
# environment:
# - RUST_LOG=info
# restart: unless-stopped
# cap_drop:
# - ALL
# read_only: true
# security_opt:
# - no-new-privileges:true
invidious-db:
image: docker.io/library/postgres:14
restart: unless-stopped
volumes:
- postgresdata:/var/lib/postgresql/data
- ./config/sql:/config/sql
- ./docker/init-invidious-db.sh:/docker-entrypoint-initdb.d/init-invidious-db.sh
environment:
POSTGRES_DB: invidious
POSTGRES_USER: kemal
POSTGRES_PASSWORD: kemal
healthcheck:
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
volumes:
postgresdata:
companioncache: