Auto Merge of PR 21 - archivebox-dvbackup-deployment
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Docker Compose & Ansible Lints (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Cloudflare DNS Setup (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Update README & Generate List of Modified Services (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / PR Merge (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Ansible Configs & Docker Compose Deployment (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Check and Create PR (push) Has been cancelled
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Docker Compose & Ansible Lints (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Cloudflare DNS Setup (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Update README & Generate List of Modified Services (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / PR Merge (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Ansible Configs & Docker Compose Deployment (push) Blocked by required conditions
Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment / Check and Create PR (push) Has been cancelled
Merged by Trez.One
This commit was merged in pull request #21.
This commit is contained in:
@@ -1,10 +1,8 @@
|
|||||||
name: Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment
|
name: Gitea Branch PR, Cloudflare DNS, README generation, & Ansible/Docker Deployment
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches-ignore:
|
||||||
- '**'
|
- 'main'
|
||||||
paths:
|
|
||||||
- 'docker-compose.yml'
|
|
||||||
jobs:
|
jobs:
|
||||||
check-and-create-pr:
|
check-and-create-pr:
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
| --- | --- |
|
| --- | --- |
|
||||||
| actual_server | docker.io/actualbudget/actual-server:latest |
|
| actual_server | docker.io/actualbudget/actual-server:latest |
|
||||||
| adguard | adguard/adguardhome:latest |
|
| adguard | adguard/adguardhome:latest |
|
||||||
|
| archivebox | archivebox/archivebox:latest |
|
||||||
| audiobookshelf | ghcr.io/advplyr/audiobookshelf:latest |
|
| audiobookshelf | ghcr.io/advplyr/audiobookshelf:latest |
|
||||||
| authelia | authelia/authelia:master |
|
| authelia | authelia/authelia:master |
|
||||||
| authelia-pg | postgres:16-alpine |
|
| authelia-pg | postgres:16-alpine |
|
||||||
@@ -37,6 +38,7 @@
|
|||||||
| dbgate | dbgate/dbgate:alpine |
|
| dbgate | dbgate/dbgate:alpine |
|
||||||
| delugevpn | ghcr.io/binhex/arch-delugevpn:latest |
|
| delugevpn | ghcr.io/binhex/arch-delugevpn:latest |
|
||||||
| docker-socket-proxy | ghcr.io/tecnativa/docker-socket-proxy:latest |
|
| docker-socket-proxy | ghcr.io/tecnativa/docker-socket-proxy:latest |
|
||||||
|
| docker-volume-backup | offen/docker-volume-backup:v2 |
|
||||||
| docuseal | docuseal/docuseal:latest |
|
| docuseal | docuseal/docuseal:latest |
|
||||||
| duplicati | lscr.io/linuxserver/duplicati:latest |
|
| duplicati | lscr.io/linuxserver/duplicati:latest |
|
||||||
| fastenhealth | ghcr.io/fastenhealth/fasten-onprem:main |
|
| fastenhealth | ghcr.io/fastenhealth/fasten-onprem:main |
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ endpoints:
|
|||||||
baseURL: "http://ollama:11434/v1/chat/completions"
|
baseURL: "http://ollama:11434/v1/chat/completions"
|
||||||
models:
|
models:
|
||||||
default: [
|
default: [
|
||||||
"deepseek-r1"
|
"deepseek-r1",
|
||||||
"deepseek-coder-v2",
|
"deepseek-coder-v2",
|
||||||
"deepseek-v3",
|
"deepseek-v3",
|
||||||
"llama3.3",
|
"llama3.3",
|
||||||
|
|||||||
+51
-2
@@ -102,6 +102,37 @@ services:
|
|||||||
type: bind
|
type: bind
|
||||||
bind:
|
bind:
|
||||||
create_host_path: true
|
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:
|
audiobookshelf:
|
||||||
container_name: audiobookshelf
|
container_name: audiobookshelf
|
||||||
environment:
|
environment:
|
||||||
@@ -1225,6 +1256,22 @@ services:
|
|||||||
source: /var/run/docker.sock
|
source: /var/run/docker.sock
|
||||||
target: /var/run/docker.sock
|
target: /var/run/docker.sock
|
||||||
type: bind
|
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:
|
docuseal:
|
||||||
container_name: docuseal
|
container_name: docuseal
|
||||||
image: docuseal/docuseal:latest
|
image: docuseal/docuseal:latest
|
||||||
@@ -2816,8 +2863,8 @@ services:
|
|||||||
RAG_PORT: 8000
|
RAG_PORT: 8000
|
||||||
image: ghcr.io/danny-avila/librechat-rag-api-dev-lite:latest
|
image: ghcr.io/danny-avila/librechat-rag-api-dev-lite:latest
|
||||||
restart: always
|
restart: always
|
||||||
env_file:
|
# env_file:
|
||||||
- ${DOCKER_VOLUME_CONFIG}/librechat/librechat.env
|
# - ${DOCKER_VOLUME_CONFIG}/librechat/librechat.env
|
||||||
libretranslate:
|
libretranslate:
|
||||||
container_name: libretranslate
|
container_name: libretranslate
|
||||||
# command: --ssl --ga-id MY-GA-ID --req-limit 100 --char-limit 500
|
# command: --ssl --ga-id MY-GA-ID --req-limit 100 --char-limit 500
|
||||||
@@ -5330,6 +5377,8 @@ volumes:
|
|||||||
name: dawarich_watched
|
name: dawarich_watched
|
||||||
dbgate-data:
|
dbgate-data:
|
||||||
name: dbgate-data
|
name: dbgate-data
|
||||||
|
docker-volume-bkup-data:
|
||||||
|
name: docker-volume-bkup-data
|
||||||
fastenhealth-cache:
|
fastenhealth-cache:
|
||||||
name: fastenhealth-cache
|
name: fastenhealth-cache
|
||||||
fastenhealth-db:
|
fastenhealth-db:
|
||||||
|
|||||||
Reference in New Issue
Block a user