Sm shit changed

- new config on dozzle, gitea, invidious, ollama
- gossa file server
- scripts to poweron/update all dockers
This commit is contained in:
bigboxuser
2025-10-25 10:40:29 +03:00
parent 4b169be4ff
commit 82a84240eb
9 changed files with 87 additions and 10 deletions

12
.gitignore vendored Normal file
View File

@@ -0,0 +1,12 @@
.not-running
freshrss/config
gitea/gitea
speedtest-tracker/config
speedtest-tracker/.config
syncthing/data1
syncthing/data2
syncthing/syncthing
invidious/config
invidious/docker
gossa/sharefolder
karakeep/login

View File

@@ -1,6 +1,7 @@
# Run with docker compose up -d # Run with docker compose up -d
services: services:
dozzle: dozzle:
restart: unless-stopped
image: amir20/dozzle:latest image: amir20/dozzle:latest
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock

View File

@@ -19,5 +19,5 @@ services:
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
- "3000:3000" - "3010:3000"
- "222:22" - "222:22"

8
gossa/docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
version: '3'
services:
gossa:
volumes:
- ./sharefolder:/shared
ports:
- 9000:8001
image: pldubouilh/gossa

View File

@@ -30,7 +30,6 @@ services:
invidious: invidious:
image: quay.io/invidious/invidious:latest image: quay.io/invidious/invidious:latest
# image: quay.io/invidious/invidious:latest-arm64 # ARM64/AArch64 devices
restart: unless-stopped restart: unless-stopped
ports: ports:
- "4000:3000" - "4000:3000"
@@ -46,17 +45,22 @@ services:
host: invidious-db host: invidious-db
port: 5432 port: 5432
check_tables: true check_tables: true
signature_server: inv_sig_helper:12999 #signature_server: inv_sig_helper:12999
visitor_data: CgtYSm5kUWRVZVE1ZyiI19DFBjInCgJSTxIhEh0SGwsMDg8QERITFBUWFxgZGhscHR4fICEiIyQlJiBF visitor_data: CgtYSm5kUWRVZVE1ZyiI19DFBjInCgJSTxIhEh0SGwsMDg8QERITFBUWFxgZGhscHR4fICEiIyQlJiBF
po_token: MpgBecKBkgtBf495_hSk7H5v2KKh-AqptAyHbebX8yIGmiAdCdWMqjxK-5Tj_M_N_ATC0_338CYGDbdFPWV10VlDLhX5K2rgzdva9hD4AMVfcSBZalgO8Wmgly5ynp2tTwll3kgbRJXpz1nJNc-mrUnd0qIKsqigJvJet1RxUzWNc0cVCnRdhhplKd8ms7jDuSCnHaWglT3M6d0= po_token: MpgBecKBkgtBf495_hSk7H5v2KKh-AqptAyHbebX8yIGmiAdCdWMqjxK-5Tj_M_N_ATC0_338CYGDbdFPWV10VlDLhX5K2rgzdva9hD4AMVfcSBZalgO8Wmgly5ynp2tTwll3kgbRJXpz1nJNc-mrUnd0qIKsqigJvJet1RxUzWNc0cVCnRdhhplKd8ms7jDuSCnHaWglT3M6d0=
quality: dash quality: dash
quality_dash: 1080p quality_dash: auto
local: true local: true
invidious_companion:
- private_url: "http://companion:8282/companion"
#- public_url: "http://localhost:8282"
invidious_companion_key: "FcmLBRw5p3SkVjuR"
# external_port: # external_port:
# domain: # domain:
# https_only: false # https_only: false
# statistics_enabled: false # statistics_enabled: false
hmac_key: "4xEaLg0fzfvolth1Tq+wJstoZuF3mkURi5PmgzPeqlo=" hmac_key: "4xEaLg0fzfvolth1Tq+wJstoZuF3mkURi5PmgzPeqlo="
use_innertube_for_captions: true
healthcheck: healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:4000/api/v1/trending || exit 1 test: wget -nv --tries=1 --spider http://127.0.0.1:4000/api/v1/trending || exit 1
interval: 30s interval: 30s
@@ -69,19 +73,38 @@ services:
depends_on: depends_on:
- invidious-db - invidious-db
inv_sig_helper: companion:
image: quay.io/invidious/inv-sig-helper:latest image: quay.io/invidious/invidious-companion:latest
init: true
command: ["--tcp", "0.0.0.0:12999"]
environment: environment:
- RUST_LOG=info - SERVER_SECRET_KEY=FcmLBRw5p3SkVjuR
restart: unless-stopped restart: unless-stopped
#ports:
#- "127.0.0.1:8282:8282"
logging:
options:
max-size: "1G"
max-file: "4"
cap_drop: cap_drop:
- ALL - ALL
read_only: true read_only: true
volumes:
- companioncache:/var/tmp/youtubei.js:rw
security_opt: security_opt:
- no-new-privileges:true - 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: invidious-db:
image: docker.io/library/postgres:14 image: docker.io/library/postgres:14
restart: unless-stopped restart: unless-stopped
@@ -98,3 +121,4 @@ services:
volumes: volumes:
postgresdata: postgresdata:
companioncache:

View File

@@ -15,7 +15,7 @@ services:
depends_on: depends_on:
- ollama - ollama
ports: ports:
- 192.168.0.131:3001:8080 - 192.168.0.131:3005:8080
environment: environment:
- 'OLLAMA_BASE_URL=http://192.168.0.131:11434' - 'OLLAMA_BASE_URL=http://192.168.0.131:11434'
- 'WEBUI_SECRET_KEY=' - 'WEBUI_SECRET_KEY='

12
power-all-docker.sh Executable file
View File

@@ -0,0 +1,12 @@
set -xeu
for dir in */; do
cd $dir
docker-compose up -d
#for dir2 in */; do
# cd $dir2
# ls -d $PWD/*
# cd ..
#done
cd ..
done

View File

@@ -0,0 +1,6 @@
{
"Settings": {
"LicenseAccepted": "604ec27f828456331ebf441826292c49276bd3c1bee1a2f65a6452f505c4061c",
"GDPRTimeStamp": 1746646475
}
}

14
update-all-docker.sh Executable file
View File

@@ -0,0 +1,14 @@
set -xeu
for dir in */; do
cd $dir
docker-compose down
docker-compose pull
docker-compose up -d
#for dir2 in */; do
# cd $dir2
# ls -d $PWD/*
# cd ..
#done
cd ..
done