Initial commit - running in parallel with /var/azuracast/docker-compose.yml and its script
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -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"
|
||||
@@ -1,33 +1,5 @@
|
||||
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
|
||||
|
||||
@@ -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
|
||||
@@ -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: {}
|
||||
@@ -2,9 +2,9 @@ set -xeu
|
||||
|
||||
for dir in */; do
|
||||
cd $dir
|
||||
docker-compose down
|
||||
docker-compose pull
|
||||
docker-compose up -d
|
||||
docker compose down
|
||||
docker compose pull
|
||||
docker compose up -d
|
||||
#for dir2 in */; do
|
||||
# cd $dir2
|
||||
# ls -d $PWD/*
|
||||
@@ -12,3 +12,10 @@ for dir in */; do
|
||||
#done
|
||||
cd ..
|
||||
done
|
||||
|
||||
cd /var/azuracast/
|
||||
./docker.sh down
|
||||
./docker.sh update-self
|
||||
./docker.sh update
|
||||
./docker.sh up
|
||||
cd /home/bigboxuser/docker
|
||||
|
||||
Reference in New Issue
Block a user