From 88b4f8434fa735c568c7bc6dbd196b461bf0ae9e Mon Sep 17 00:00:00 2001 From: bigboxuser Date: Sun, 31 Aug 2025 14:37:10 +0300 Subject: [PATCH] Added Invidious - no ffmpeg --- invidious/docker-compose.yml | 97 ++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 invidious/docker-compose.yml diff --git a/invidious/docker-compose.yml b/invidious/docker-compose.yml new file mode 100644 index 0000000..0145d72 --- /dev/null +++ b/invidious/docker-compose.yml @@ -0,0 +1,97 @@ +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 + # image: quay.io/invidious/invidious:latest-arm64 # ARM64/AArch64 devices + 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= + # external_port: + # domain: + # https_only: false + # statistics_enabled: false + hmac_key: "4xEaLg0fzfvolth1Tq+wJstoZuF3mkURi5PmgzPeqlo=" + 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 + + 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: