Initial commit - running in parallel with /var/azuracast/docker-compose.yml and its script

This commit is contained in:
bigboxuser
2026-01-10 18:00:32 +02:00
parent 2493967475
commit b3babb7ebb
7 changed files with 11 additions and 127 deletions

View File

@@ -1,18 +0,0 @@
# Run with docker compose up -d
services:
dozzle:
restart: unless-stopped
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:
- "3010:3000"
- "222:22"

View File

@@ -1,33 +1,5 @@
version: "3" version: "3"
services: 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: invidious:
image: quay.io/invidious/invidious:latest image: quay.io/invidious/invidious:latest
restart: unless-stopped restart: unless-stopped

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

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:3005: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: {}

View File

@@ -2,13 +2,20 @@ set -xeu
for dir in */; do for dir in */; do
cd $dir cd $dir
docker-compose down docker compose down
docker-compose pull docker compose pull
docker-compose up -d docker compose up -d
#for dir2 in */; do #for dir2 in */; do
# cd $dir2 # cd $dir2
# ls -d $PWD/* # ls -d $PWD/*
# cd .. # cd ..
#done #done
cd .. cd ..
done done
cd /var/azuracast/
./docker.sh down
./docker.sh update-self
./docker.sh update
./docker.sh up
cd /home/bigboxuser/docker