Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01d5afe81c | |||
| 7feb968c74 | |||
| 3ccc4d2498 | |||
| 112c8424ef | |||
| d0ecaf2fb4 | |||
| 626b29c3a7 | |||
| 0579463452 | |||
| 729ea610f6 | |||
| 4f712430c0 | |||
| 4261273d5b | |||
| eeae02e9a6 | |||
| 3790b84978 |
@@ -1,10 +1,8 @@
|
||||
name: Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'docker-compose.yml'
|
||||
branches-ignore:
|
||||
- 'main'
|
||||
jobs:
|
||||
check-and-create-pr:
|
||||
if: github.ref != 'refs/heads/main'
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
| --- | --- |
|
||||
| actual_server | docker.io/actualbudget/actual-server:latest |
|
||||
| adguard | adguard/adguardhome:latest |
|
||||
| archivebox | archivebox/archivebox:latest |
|
||||
| audiobookshelf | ghcr.io/advplyr/audiobookshelf:latest |
|
||||
| authelia | authelia/authelia:master |
|
||||
| authelia-pg | postgres:16-alpine |
|
||||
@@ -37,6 +38,7 @@
|
||||
| dbgate | dbgate/dbgate:alpine |
|
||||
| delugevpn | ghcr.io/binhex/arch-delugevpn:latest |
|
||||
| docker-socket-proxy | ghcr.io/tecnativa/docker-socket-proxy:latest |
|
||||
| docker-volume-backup | offen/docker-volume-backup:v2 |
|
||||
| docuseal | docuseal/docuseal:latest |
|
||||
| duplicati | lscr.io/linuxserver/duplicati:latest |
|
||||
| fastenhealth | ghcr.io/fastenhealth/fasten-onprem:main |
|
||||
|
||||
@@ -226,8 +226,8 @@ DEBUG_OPENAI=false
|
||||
|
||||
# DEBUG_PLUGINS=
|
||||
|
||||
# CREDS_KEY=
|
||||
# CREDS_IV=
|
||||
CREDS_KEY={{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['LIBRECHAT_CREDS_KEY'] }}
|
||||
CREDS_IV={{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['LIBRECHAT_CREDS_IV'] }}
|
||||
|
||||
# Azure AI Search
|
||||
#-----------------
|
||||
@@ -273,7 +273,7 @@ SERPAPI_API_KEY=
|
||||
|
||||
# Stable Diffusion
|
||||
#-----------------
|
||||
# SD_WEBUI_URL=http://host.docker.internal:7860
|
||||
SD_WEBUI_URL=http://stable-diffusion-webui:7860
|
||||
|
||||
# Tavily
|
||||
#-----------------
|
||||
|
||||
@@ -5,7 +5,7 @@ endpoints:
|
||||
baseURL: "http://ollama:11434/v1/chat/completions"
|
||||
models:
|
||||
default: [
|
||||
"deepseek-r1"
|
||||
"deepseek-r1",
|
||||
"deepseek-coder-v2",
|
||||
"deepseek-v3",
|
||||
"llama3.3",
|
||||
|
||||
@@ -30,6 +30,9 @@ message_db:
|
||||
smtp_server:
|
||||
default_port: 25
|
||||
default_bind_address: "::"
|
||||
tls_enabled: true
|
||||
tls_certificate_path: /config/certs/fullchain.pem
|
||||
tls_private_key_path: /config/certs/privkey.pem
|
||||
|
||||
dns:
|
||||
# Specify the DNS records that you have configured. Refer to the documentation at
|
||||
|
||||
+105
-10
@@ -102,6 +102,37 @@ services:
|
||||
type: bind
|
||||
bind:
|
||||
create_host_path: true
|
||||
archivebox:
|
||||
container_name: archivebox
|
||||
dns:
|
||||
- adguard
|
||||
environment:
|
||||
ADMIN_USERNAME: admin # creates an admin user on first run with the given user/pass combo
|
||||
ADMIN_PASSWORD: ${ARCHIVEBOX_ADMIN_PASSWORD}
|
||||
ALLOWED_HOSTS: '*' # set this to the hostname(s) you're going to serve the site from!
|
||||
CSRF_TRUSTED_ORIGINS: http://localhost:8000 # you MUST set this to the server's URL for admin login and the REST API to work
|
||||
PUBLIC_INDEX: false # set to False to prevent anonymous users from viewing snapshot list
|
||||
PUBLIC_SNAPSHOTS: false # set to False to prevent anonymous users from viewing snapshot content
|
||||
PUBLIC_ADD_VIEW: false # set to True to allow anonymous users to submit new URLs to archive
|
||||
SEARCH_BACKEND_ENGINE: ripgrep # tells ArchiveBox to use sonic container below for fast full-text search
|
||||
image: archivebox/archivebox:latest
|
||||
labels:
|
||||
homepage.group: Personal Services
|
||||
homepage.name: ArchiveBox
|
||||
homepage.href: https://archive.${MY_TLD}
|
||||
homepage.icon: archivebox.png
|
||||
homepage.description: Podcasts, eBooks, & Audiobooks
|
||||
swag: enable
|
||||
swag_port: 8000
|
||||
swag_proto: http
|
||||
swag_url: archive.${MY_TLD}
|
||||
swag.uptime-kuma.enabled: true
|
||||
swag.uptime-kuma.monitor.url: https://archive.${MY_TLD}
|
||||
ports:
|
||||
- 21324:8000
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/archivebox:/data
|
||||
# ./data/personas/Default/chrome_profile/Default:/data/personas/Default/chrome_profile/Default
|
||||
audiobookshelf:
|
||||
container_name: audiobookshelf
|
||||
environment:
|
||||
@@ -1225,6 +1256,22 @@ services:
|
||||
source: /var/run/docker.sock
|
||||
target: /var/run/docker.sock
|
||||
type: bind
|
||||
docker-volume-backup:
|
||||
container_name: docker-volume-backup
|
||||
image: offen/docker-volume-backup:v2
|
||||
environment:
|
||||
BACKUP_ARCHIVE: /archive
|
||||
BACKUP_CRON_EXPRESSION: '@weekly'
|
||||
BACKUP_COMPRESSION: zst
|
||||
BACKUP_FILENAME: rinoa-docker-backup-%Y-%m-%dT%H-%M-%S.{{ .Extension }}
|
||||
BACKUP_FILENAME_EXPAND: true
|
||||
BACKUP_RETENTION_DAYS: 14
|
||||
DOCKER_HOST: tcp://dockerproxy:2375
|
||||
NOTIFICATION_URLS: gotify://gotify/${DV_BKUP_GOTIFY_TOKEN}
|
||||
restart: always
|
||||
volumes:
|
||||
- docker-volume-bkup-data:/backup/my-app-backup:ro
|
||||
- ${DOCKER_VOLUME_STORAGE}/backups/docker_volume_bkups:/archive
|
||||
docuseal:
|
||||
container_name: docuseal
|
||||
image: docuseal/docuseal:latest
|
||||
@@ -2763,12 +2810,25 @@ services:
|
||||
- mongodb
|
||||
- librechat-rag-api
|
||||
environment:
|
||||
CONFIG_PATH: /app/librechat.yaml
|
||||
HOST: 0.0.0.0
|
||||
MONGO_URI: mongodb://librechat:${LIBRECHAT_MONGODB_PASSWORD}:27017/librechat?replicaSet=rinoa
|
||||
MONGO_URI: mongodb://librechat:${LIBRECHAT_MONGODB_PASSWORD}@mongodb:27017/librechat?replicaSet=rinoa
|
||||
MEILI_HOST: http://meilisearch:7700
|
||||
RAG_PORT: 8000
|
||||
RAG_API_URL: http://librechat-rag-api:8000
|
||||
image: ghcr.io/danny-avila/librechat-dev:latest
|
||||
labels:
|
||||
homepage.group: Personal Services
|
||||
homepage.name: LibreChat
|
||||
homepage.href: https://ai.${MY_TLD}
|
||||
homepage.icon: sh-librechat.svg
|
||||
homepage.description: Local AI chat
|
||||
swag: enable
|
||||
swag_port: 3080
|
||||
swag_proto: http
|
||||
swag_url: ai.${MY_TLD}
|
||||
swag.uptime-kuma.enabled: true
|
||||
swag.uptime-kuma.monitor.url: https://ai.${MY_TLD}
|
||||
ports:
|
||||
- 3080:3080
|
||||
restart: always
|
||||
@@ -2785,6 +2845,8 @@ services:
|
||||
POSTGRES_DB: librechat
|
||||
POSTGRES_USER: librechat
|
||||
POSTGRES_PASSWORD: ${LIBRECHAT_PG_DB_PASSWD}
|
||||
expose:
|
||||
- 5432
|
||||
image: ankane/pgvector:latest
|
||||
restart: always
|
||||
volumes:
|
||||
@@ -2795,11 +2857,14 @@ services:
|
||||
- librechat-vectordb
|
||||
environment:
|
||||
DB_HOST: librechat-vectordb
|
||||
POSTGRES_DB: librechat
|
||||
POSTGRES_USER: librechat
|
||||
POSTGRES_PASSWORD: ${LIBRECHAT_PG_DB_PASSWD}
|
||||
RAG_PORT: 8000
|
||||
image: ghcr.io/danny-avila/librechat-rag-api-dev-lite:latest
|
||||
restart: always
|
||||
env_file:
|
||||
- ${DOCKER_VOLUME_CONFIG}/librechat/librechat.env
|
||||
# env_file:
|
||||
# - ${DOCKER_VOLUME_CONFIG}/librechat/librechat.env
|
||||
libretranslate:
|
||||
container_name: libretranslate
|
||||
# command: --ssl --ga-id MY-GA-ID --req-limit 100 --char-limit 500
|
||||
@@ -3636,10 +3701,11 @@ services:
|
||||
swag_proto: http
|
||||
swag_port: 8000
|
||||
swag_url: logs.${MY_TLD}
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/parseable/staging:/staging
|
||||
ports:
|
||||
- 14453:8000
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/parseable/staging:/staging
|
||||
peppermint:
|
||||
container_name: peppermint
|
||||
depends_on:
|
||||
@@ -3871,11 +3937,8 @@ services:
|
||||
- 25:25
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- source: ${DOCKER_VOLUME_CONFIG}/postal
|
||||
target: /config
|
||||
type: bind
|
||||
bind:
|
||||
create_host_path: true
|
||||
- ${DOCKER_VOLUME_CONFIG}/postal:/config
|
||||
- ${DOCKER_VOLUME_CONFIG}/swag/etc/letsencrypt/live/trez.wtf:/config/certs
|
||||
postal-web:
|
||||
command: postal web-server
|
||||
container_name: postal-web
|
||||
@@ -4799,6 +4862,36 @@ services:
|
||||
restart: always
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/spotisub:/home/user/spotisub/cache
|
||||
stable-diffusion-download:
|
||||
container_name: stable-diffusion-download
|
||||
image: git.trez.wtf/trez.one/stable-diffusion-download:v9.0.0
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/data:/data
|
||||
stable-diffusion-webui:
|
||||
container_name: stable-diffusion-webui
|
||||
image: git.trez.wtf/trez.one/stable-diffusion-ui:v9.0.0
|
||||
environment:
|
||||
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
||||
labels:
|
||||
homepage.name: Stable-Diffusion WebUI
|
||||
homepage.group: Personal Services
|
||||
homepage.description: Deep learning, text-to-image model
|
||||
homepage.href: https://sd.${MY_TLD}
|
||||
homepage.icon: /icons/stable-diffusion.png
|
||||
swag: enable
|
||||
swag_port: 7860
|
||||
swag_proto: http
|
||||
swag_url: sd.${MY_TLD}
|
||||
swag.uptime-kuma.enabled: true
|
||||
swag.uptime-kuma.monitor.url: https://sd.${MY_TLD}
|
||||
ports:
|
||||
- 7860:7860
|
||||
restart: unless-stopped
|
||||
tty: true
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/data:/data
|
||||
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/output:/output
|
||||
swag:
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
@@ -5311,6 +5404,8 @@ volumes:
|
||||
name: dawarich_watched
|
||||
dbgate-data:
|
||||
name: dbgate-data
|
||||
docker-volume-bkup-data:
|
||||
name: docker-volume-bkup-data
|
||||
fastenhealth-cache:
|
||||
name: fastenhealth-cache
|
||||
fastenhealth-db:
|
||||
|
||||
Reference in New Issue
Block a user