Compare commits

...

10 Commits

Author SHA1 Message Date
281f6eaf5b Changed from gossa to a better solution + added invidious clean + update-all-docker properly scripted 2026-01-20 21:18:09 +02:00
e971676900 Added Gossa for FTP+M3U music access 2026-01-20 11:33:19 +02:00
bfd7d0ca9e Added .YAML git visibility 2026-01-14 22:42:33 +02:00
b53e2015a2 cleaned a bit the git repo 2026-01-10 18:09:06 +02:00
9ddc385c98 added README 2026-01-10 18:03:36 +02:00
bigboxuser
b3babb7ebb Initial commit - running in parallel with /var/azuracast/docker-compose.yml and its script 2026-01-10 18:00:32 +02:00
bigboxuser
2493967475 Added docker cleaning script 2025-10-25 13:53:02 +03:00
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
bigboxuser
4b169be4ff Customize Invidious a bit 2025-08-31 15:05:06 +03:00
bigboxuser
88b4f8434f Added Invidious - no ffmpeg 2025-08-31 14:37:10 +03:00
19 changed files with 274 additions and 102 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
*.yml linguist-language=YAML
*.yaml linguist-language=YAML

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

0
README.md Normal file
View File

10
clean.sh Executable file
View File

@@ -0,0 +1,10 @@
set -xeu
docker image prune
docker container prune
docker volume prune
docker builder prune

View File

@@ -1,17 +0,0 @@
# Run with docker compose up -d
services:
dozzle:
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 192.168.0.131:8009:8080
environment:
# Uncomment to enable container actions (stop, start, restart). See https://dozzle.dev/guide/actions
# - DOZZLE_ENABLE_ACTIONS=true
#
# Uncomment to allow access to container shells. See https://dozzle.dev/guide/shell
- DOZZLE_ENABLE_SHELL=true
#
# Uncomment to enable authentication. See https://dozzle.dev/guide/authentication
# - DOZZLE_AUTH_PROVIDER=simple

View File

@@ -1,14 +0,0 @@
services:
freshrss:
image: lscr.io/linuxserver/freshrss:latest
container_name: freshrss
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Bucharest
- HTTP_PROXY=127.0.0.1:9050
volumes:
- /home/bigboxuser/docker/freshrss/config:/config
ports:
- 192.168.0.131:8011:80
restart: unless-stopped

View File

@@ -1,23 +0,0 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: docker.gitea.com/gitea:nightly
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "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

@@ -0,0 +1,9 @@
name: filebrowser_playlists_web_sharing
services:
filebrowser:
ports:
- 4444:80
volumes:
- /var/lib/jellyfin/media/:/srv
image: filebrowser/filebrowser
command: --noauth

View File

@@ -0,0 +1,6 @@
veth8e1885b@if47
found it with:
docker exec -it invidious-invidious-1 cat /sys/class/net/eth0/iflink
ip a | grep "number"

88
invidious/clean.yml Normal file
View File

@@ -0,0 +1,88 @@
version: "3"
services:
invidious:
image: quay.io/invidious/invidious:latest
# image: quay.io/invidious/invidious:latest-arm64 # ARM64/AArch64 devices
restart: unless-stopped
# Remove "127.0.0.1:" if used from an external IP
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
invidious_companion:
# URL used for the internal communication between invidious and invidious companion
# There is no need to change that except if Invidious companion does not run on the same docker compose file.
- private_url: "http://companion:8282/companion"
# IT is NOT recommended to use the same key as HMAC KEY. Generate a new key!
# Use the key generated in the 2nd step
invidious_companion_key: "CHANGE_ME!!"
# external_port:
# domain:
# https_only: false
# statistics_enabled: false
# Use the key generated in the 2nd step
hmac_key: "CHANGE_ME!!"
healthcheck:
test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/stats || 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:
# Use the key generated in the 2nd step
- SERVER_SECRET_KEY=CHANGE_ME!!SAME_AS_INVIDIOUS_COMPANION_SECRET_KEY_FROM_INVIDIOUS_CONFIG
restart: unless-stopped
# Uncomment only if you have configured "public_url" for Invidious companion
# Or if you want to use Invidious companion as an API in your program.
# Remove "127.0.0.1:" if used from an external IP
#ports:
# - "127.0.0.1:8282:8282"
logging:
options:
max-size: "1G"
max-file: "4"
cap_drop:
- ALL
read_only: true
# cache for youtube library
volumes:
- companioncache:/var/tmp/youtubei.js:rw
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:

View File

@@ -0,0 +1,96 @@
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:

View File

@@ -1,12 +0,0 @@
version: '3.8'
services:
netdata:
image: netdata/netdata
container_name: netdata
ports:
- "192.168.0.131:19999:19999"
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: always

Binary file not shown.

View File

@@ -1,8 +0,0 @@
#!/bin/bash
docker-compose up -d
models=("smollm2:135m" "all-minilm:22m" "nomic-embed-text" "qwen2.5:0.5b" "qwen3:0.6b" "gemma3:1b" "hf.co/mradermacher/DeepSeek-R1-Distill-Qwen-1.5B-Fully-Uncensored-i1-GGUF:Q4_K_S")
for model in "${models[@]}"; do
docker exec $(docker ps | grep ollama | awk '{print $1}') bash -c "ollama pull $model"
done
echo ""
echo "---OLLAMA INIT DONE !"

View File

@@ -1,28 +0,0 @@
services:
ollama:
image: ollama/ollama:latest
ports:
- "192.168.0.131:11434:11434" # Exposing API port
environment:
- OLLAMA_HOST=0.0.0.0:11434
restart: unless-stopped # Auto-restart
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
volumes:
- open-webui:/app/backend/data
depends_on:
- ollama
ports:
- 192.168.0.131:3001:8080
environment:
- 'OLLAMA_BASE_URL=http://192.168.0.131:11434'
- 'WEBUI_SECRET_KEY='
#extra_hosts:
#- host.docker.internal:host-gateway
restart: unless-stopped
volumes:
ollama: {}
open-webui: {}

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
}
}

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

@@ -0,0 +1,25 @@
#!/bin/env bash
set -xeu
cd /home/bigboxuser/docker
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
cd /var/azuracast/
./docker.sh down
./docker.sh update-self
./docker.sh update
./docker.sh up
cd /home/bigboxuser/docker