Compare commits

..

1 Commits

Author SHA1 Message Date
renovate-bot b37948481e 🔧 Renovate: Update (major) percona/mongodb_exporter Docker tag to v2 2025-11-14 18:45:15 +00:00
6 changed files with 342 additions and 258 deletions
+60 -28
View File
@@ -1,35 +1,67 @@
name: List of Services README Generation
on:
schedule:
- cron: 30 */2 * * *
workflow_dispatch:
jobs:
readme-services:
name: Generate Services List
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
ref: 'main'
- name: Install yq
uses: dcarbone/install-yq-action@4075b4dca348d74bd83f2bf82d30f25d7c54539b # v1.3.1
- name: Generate service list
run: |
yq 'explode(.) | .services | to_entries | map({"service": .key, "image": (.value.image | sub("@sha256:.*$"; "")), "description": (.value.labels."homepage.description" // "")})' docker-compose.yml > services.yml
- name: Generate Markdown Table
uses: gazab/create-markdown-table@6686233d7008e8d8b9d4bbdbfd1fb1ae510019f0 # v1.0.7
id: service-table
with:
file: ./services.yml
- name: Regenerate README
run: |
echo "# List of Services" > README.md
echo -e "\n\n" >> README.md
echo "${{ steps.service-table.outputs.table }}" >> README.md
- name: Add/Commit README.md
id: commit-readme
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
with:
message: "chore: Update README"
add: "README.md"
name: Generate Services List
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
ref: main
- name: Generate system info (ANSI preserved)
id: gen-sysinfo
uses: appleboy/ssh-action@91f3272fc5907f4699dcf59761eb622a07342f5a # v1.2.3
with:
host: 192.168.1.254
username: charish
port: 22
key: ${{ secrets.RUNNER_SSH_PRIVATE_KEY }}
capture_stdout: true
script: neofetch
- name: Convert ANSI to HTML
id: ansi-to-html
uses: https://git.trez.wtf/Trez/actions-ansi-to-html@pre-bundle-dependencies_2025-11-11T06-51-37
with:
input: ${{ steps.gen-sysinfo.outputs.stdout }}
# run: |
# echo "${{ steps.gen-sysinfo.outputs.stdout }}" > sysinfo.ansi
# cat sysinfo.ansi | aha --black > sysinfo.html
- name: Generate service list
run: |
yq 'explode(.) | .services | to_entries | map({"service": .key, "image": (.value.image | sub("@sha256:.*$"; "")), "description": (.value.labels."homepage.description" // "")})' docker-compose.yml > services.yml
- name: Generate Markdown Table
uses: gazab/create-markdown-table@6686233d7008e8d8b9d4bbdbfd1fb1ae510019f0 # v1.0.7
id: service-table
with:
file: ./services.yml
- name: Regenerate README
run: |
{
echo "# System Info"
echo ""
echo '<details><summary>View Neofetch Output</summary>'
echo "${{ steps.ansi-to-html.outputs.contents }}"
echo '</details>'
echo ""
echo "# List of Services"
echo ""
echo "${{ steps.service-table.outputs.table }}"
} > README.md
- name: Add/Commit README.md
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
with:
message: "chore: Update README"
add: "README.md"
@@ -11,7 +11,7 @@ on:
env:
FLARECTL_VERSION: "0.116.0"
HC_VAULT_VERSION: "1.21.1"
HC_VAULT_VERSION: "1.21.0"
TEA_VERSION: "0.10.1"
jobs:
@@ -20,12 +20,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
fetch-depth: 1
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -41,7 +41,7 @@ jobs:
assignee: ${{ github.actor }}
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -56,14 +56,14 @@ jobs:
svc_deploy_list: ${{ steps.detect_services.outputs.docker_svc_list }}
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Fetch base branch
run: |
git fetch origin ${{ github.event.pull_request.base.ref }}
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -174,7 +174,7 @@ jobs:
DOCKER_SVC_LIST: ${{ needs.generate-service-list.outputs.svc_deploy_list }}
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Login to Docker Hub
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
@@ -197,7 +197,7 @@ jobs:
password: ${{ secrets.BOT_GITEA_PASSWORD }}
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -213,6 +213,16 @@ jobs:
HC_VAULT_TOKEN: ${{ secrets.VAULT_GITEA_TOKEN }}
HC_VAULT_SECRETS_PATH: rinoa-docker/env
- name: Check services
env:
DSLIST: ${{ env.DOCKER_SVC_LIST }}
run: |
if [ -z ${DSLIST} ]; then
echo "DOCKER_SVC_LIST=" >> $GITHUB_ENV
else
echo "${DLIST}"
fi
- name: Pre-pull/build service images in parallel
continue-on-error: true
uses: https://git.trez.wtf/Trez/docker-select-image-pull@main
@@ -234,7 +244,7 @@ jobs:
services-log-level: debug
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -247,7 +257,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
fetch-depth: 1
@@ -277,7 +287,7 @@ jobs:
sort > cloudflare_subdomains.txt
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -307,7 +317,7 @@ jobs:
done
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -321,7 +331,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Install tea
uses: supplypike/setup-bin@8e3f88b4f143d9b5c3497f0fc12d45c83c123787 # v4.0.1
@@ -358,7 +368,7 @@ jobs:
echo "pr_index=${pr_index}" >> $GITHUB_OUTPUT
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -377,7 +387,7 @@ jobs:
DOCKER_SVC_LIST: ${{ needs.generate-service-list.outputs.svc_deploy_list }}
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
ref: main
@@ -402,7 +412,7 @@ jobs:
password: ${{ secrets.BOT_GITEA_PASSWORD }}
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -448,7 +458,7 @@ jobs:
skip-no-healthcheck: "true"
- name: Gotify Notification
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: https://git.trez.wtf/Trez/gotify-action@main
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
+4 -4
View File
@@ -10,7 +10,7 @@ on:
- "**/docker-compose.yml"
env:
HC_VAULT_VERSION: "1.21.1"
HC_VAULT_VERSION: "1.21.0"
VAULT_ADDR: ${{ secrets.TREZ_VAULT_ADDR }}
VAULT_TOKEN: ${{ secrets.VAULT_GITEA_TOKEN }}
@@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout full repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
fetch-depth: 0 # required so we can access main^1
@@ -126,7 +126,7 @@ jobs:
password: ${{ secrets.BOT_GITEA_PASSWORD }}
- name: Gotify Notification (Start)
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: eikendev/gotify-action@master
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
@@ -164,7 +164,7 @@ jobs:
skip-no-healthcheck: "true"
- name: Gotify Notification (Finish)
uses: eikendev/gotify-action@ca0339b85ee8db9fda9c0718aaa7f95e17b3c617 # 0.0.4
uses: eikendev/gotify-action@master
with:
gotify_api_base: "${{ secrets.RUNNER_GOTIFY_URL }}"
gotify_app_token: "${{ secrets.RUNNER_GOTIFY_TOKEN }}"
+2 -2
View File
@@ -6,7 +6,7 @@ on:
workflow_dispatch:
env:
RENOVATE_VERSION: "41.173.1"
RENOVATE_VERSION: "41.168.6"
jobs:
renovate:
@@ -14,7 +14,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Renovate Run
env:
+92 -11
View File
@@ -1,7 +1,86 @@
# System Info
<details><summary>View Neofetch Output</summary>
?25l?7l<span style=color:#A00><b> .-/+oossssoo+/-.
?25l?7l</b></span><span style=color:#A00><b> .-/+oossssoo+/-.
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssss<span style=color:#AAA></span></b></span><b>dMMMNy</b><span style=color:#A00><b>sssso.
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssss<span style=color:#AAA></span></b></span><b>dMMMNy</b><span style=color:#A00><b>sssso.
/sssssssssss<span style=color:#AAA></span></b></span><b>hdmmNNmmyNMMMMh</b><span style=color:#A00><b>ssssss/
+sssssssss<span style=color:#AAA></span></b></span><b>hm</b><span style=color:#A00><b>yd<span style=color:#AAA></span></b></span><b>MMMMMMMNddddy</b><span style=color:#A00><b>ssssssss+
/sssssssssss<span style=color:#AAA></span></b></span><b>hdmmNNmmyNMMMMh</b><span style=color:#A00><b>ssssss/
+sssssssss<span style=color:#AAA></span></b></span><b>hm</b><span style=color:#A00><b>yd<span style=color:#AAA></span></b></span><b>MMMMMMMNddddy</b><span style=color:#A00><b>ssssssss+
/ssssssss<span style=color:#AAA></span></b></span><b>hNMMM</b><span style=color:#A00><b>yh<span style=color:#AAA></span></b></span><b>hyyyyhmNMMMNh</b><span style=color:#A00><b>ssssssss/
.ssssssss<span style=color:#AAA></span></b></span><b>dMMMNh</b><span style=color:#A00><b>ssssssssss<span style=color:#AAA></span></b></span><b>hNMMMd</b><span style=color:#A00><b>ssssssss.
+ssss<span style=color:#AAA></span></b></span><b>hhhyNMMNy</b><span style=color:#A00><b>ssssssssssss<span style=color:#AAA></span></b></span><b>yNMMMy</b><span style=color:#A00><b>sssssss+
oss<span style=color:#AAA></span></b></span><b>yNMMMNyMMh</b><span style=color:#A00><b>ssssssssssssss<span style=color:#AAA></span></b></span><b>hmmmh</b><span style=color:#A00><b>ssssssso
/ssssssss<span style=color:#AAA></span></b></span><b>hNMMM</b><span style=color:#A00><b>yh<span style=color:#AAA></span></b></span><b>hyyyyhmNMMMNh</b><span style=color:#A00><b>ssssssss/
.ssssssss<span style=color:#AAA></span></b></span><b>dMMMNh</b><span style=color:#A00><b>ssssssssss<span style=color:#AAA></span></b></span><b>hNMMMd</b><span style=color:#A00><b>ssssssss.
+ssss<span style=color:#AAA></span></b></span><b>hhhyNMMNy</b><span style=color:#A00><b>ssssssssssss<span style=color:#AAA></span></b></span><b>yNMMMy</b><span style=color:#A00><b>sssssss+
oss<span style=color:#AAA></span></b></span><b>yNMMMNyMMh</b><span style=color:#A00><b>ssssssssssssss<span style=color:#AAA></span></b></span><b>hmmmh</b><span style=color:#A00><b>ssssssso
oss<span style=color:#AAA></span></b></span><b>yNMMMNyMMh</b><span style=color:#A00><b>sssssssssssssshmmmh</b></span><span style=color:#A00><b>ssssssso
+ssss<span style=color:#AAA></span></b></span><b>hhhyNMMNy</b><span style=color:#A00><b>ssssssssssss<span style=color:#AAA></span></b></span><b>yNMMMy</b><span style=color:#A00><b>sssssss+
.ssssssss<span style=color:#AAA></span></b></span><b>dMMMNh</b><span style=color:#A00><b>ssssssssss<span style=color:#AAA></span></b></span><b>hNMMMd</b><span style=color:#A00><b>ssssssss.
/ssssssss<span style=color:#AAA></span></b></span><b>hNMMM</b><span style=color:#A00><b>yh<span style=color:#AAA></span></b></span><b>hyyyyhdNMMMNh</b><span style=color:#A00><b>ssssssss/
+sssssssss<span style=color:#AAA></span></b></span><b>dm</b><span style=color:#A00><b>yd<span style=color:#AAA></span></b></span><b>MMMMMMMMddddy</b><span style=color:#A00><b>ssssssss+
/sssssssssss<span style=color:#AAA></span></b></span><b>hdmNNNNmyNMMMMh</b><span style=color:#A00><b>ssssss/
.ossssssssssssssssss<span style=color:#AAA></span></b></span><b>dMMMNy</b><span style=color:#A00><b>sssso.
-+sssssssssssssssss<span style=color:#AAA></span></b></span><b>yyy</b><span style=color:#A00><b>ssss+-
.-/+oossssoo+/-.</b></span>
oss<span style=color:#AAA></span><b>yNMMMNyMMh</b><span style=color:#A00><b>sssssssssssssshmmmh</b></span><span style=color:#A00><b>ssssssso
+ssss<span style=color:#AAA></span></b></span><b>hhhyNMMNy</b><span style=color:#A00><b>ssssssssssss<span style=color:#AAA></span></b></span><b>yNMMMy</b><span style=color:#A00><b>sssssss+
.ssssssss<span style=color:#AAA></span></b></span><b>dMMMNh</b><span style=color:#A00><b>ssssssssss<span style=color:#AAA></span></b></span><b>hNMMMd</b><span style=color:#A00><b>ssssssss.
/ssssssss<span style=color:#AAA></span></b></span><b>hNMMM</b><span style=color:#A00><b>yh<span style=color:#AAA></span></b></span><b>hyyyyhdNMMMNh</b><span style=color:#A00><b>ssssssss/
+sssssssss<span style=color:#AAA></span></b></span><b>dm</b><span style=color:#A00><b>yd<span style=color:#AAA></span></b></span><b>MMMMMMMMddddy</b><span style=color:#A00><b>ssssssss+
/sssssssssss<span style=color:#AAA></span></b></span><b>hdmNNNNmyNMMMMh</b><span style=color:#A00><b>ssssss/
.ossssssssssssssssss<span style=color:#AAA></span></b></span><b>dMMMNy</b><span style=color:#A00><b>sssso.
-+sssssssssssssssss<span style=color:#AAA></span></b></span><b>yyy</b><span style=color:#A00><b>ssss+-
.-/+oossssoo+/-.</b></span>
A9999DC<b><span style=color:#A00><b>charish</b></span></b>@<span style=color:#A00><b>rinoa</b></span>
C-------------
A9999DC<b><span style=color:#A00><b>charish</b></span></b>@<span style=color:#A00><b>rinoa</b></span>
C-------------
C<span style=color:#A00><b>OS</b></span>: Ubuntu 24.04.3 LTS x86_64
C<span style=color:#A00><b>OS</b></span>: Ubuntu 24.04.3 LTS x86_64
C<span style=color:#A00><b>Host</b></span>: Super Server 0123456789
C<span style=color:#A00><b>Host</b></span>: Super Server 0123456789
C<span style=color:#A00><b>Kernel</b></span>: 6.8.0-79-generic
C<span style=color:#A00><b>Kernel</b></span>: 6.8.0-79-generic
C<span style=color:#A00><b>Uptime</b></span>: 12 hours, 28 mins
C<span style=color:#A00><b>Uptime</b></span>: 12 hours, 28 mins
C<span style=color:#A00><b>Packages</b></span>: 1328 (dpkg), 8 (snap)
C<span style=color:#A00><b>Packages</b></span>: 1328 (dpkg), 8 (snap)
C<span style=color:#A00><b>Shell</b></span>: zsh 5.9
C<span style=color:#A00><b>Shell</b></span>: zsh 5.9
C<span style=color:#A00><b>Resolution</b></span>: 1024x768
C<span style=color:#A00><b>Resolution</b></span>: 1024x768
C<span style=color:#A00><b>CPU</b></span>: Intel Xeon D-1521 (8) @ 2.700GHz
C<span style=color:#A00><b>CPU</b></span>: Intel Xeon D-1521 (8) @ 2.700GHz
C<span style=color:#A00><b>GPU</b></span>: 07:00.0 ASPEED Technology, Inc. ASPEED Graphics Family
C<span style=color:#A00><b>GPU</b></span>: 07:00.0 ASPEED Technology, Inc. ASPEED Graphics Family
C<span style=color:#A00><b>Memory</b></span>: 85199MiB / 128710MiB
C<span style=color:#A00><b>Memory</b></span>: 85199MiB / 128710MiB
C<span style=color:#000><span style=background-color:#000> <span style=color:#A00><span style=background-color:#A00> <span style=color:#0A0><span style=background-color:#0A0> <span style=color:#A50><span style=background-color:#A50> <span style=color:#00A><span style=background-color:#00A> <span style=color:#A0A><span style=background-color:#A0A> <span style=color:#0AA><span style=background-color:#0AA> <span style=color:#AAA><span style=background-color:#AAA> </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
C<span style=color:#555><span style=background-color:#555> <span style=color:#F55><span style=background-color:#F55> <span style=color:#5F5><span style=background-color:#5F5> <span style=color:#FF5><span style=background-color:#FF5> <span style=color:#55F><span style=background-color:#55F> <span style=color:#F5F><span style=background-color:#F5F> <span style=color:#5FF><span style=background-color:#5FF> <span style=color:#FFF><span style=background-color:#FFF> </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
C<span style=color:#000><span style=background-color:#000> <span style=color:#A00><span style=background-color:#A00> <span style=color:#0A0><span style=background-color:#0A0> <span style=color:#A50><span style=background-color:#A50> <span style=color:#00A><span style=background-color:#00A> <span style=color:#A0A><span style=background-color:#A0A> <span style=color:#0AA><span style=background-color:#0AA> <span style=color:#AAA><span style=background-color:#AAA> </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
C<span style=color:#555><span style=background-color:#555> <span style=color:#F55><span style=background-color:#F55> <span style=color:#5F5><span style=background-color:#5F5> <span style=color:#FF5><span style=background-color:#FF5> <span style=color:#55F><span style=background-color:#55F> <span style=color:#F5F><span style=background-color:#F5F> <span style=color:#5FF><span style=background-color:#5FF> <span style=color:#FFF><span style=background-color:#FFF> </span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
?25h?7h
?25h?7h
===============================================
===============================================
✅ Successfully executed commands to all hosts.
✅ Successfully executed commands to all hosts.
===============================================
===============================================
</details>
# List of Services
| Service | Image | Description |
| --- | --- | --- |
| 13ft | ghcr.io/wasi-master/13ft:latest | Web interface for blocking ads and paywalls |
@@ -13,10 +92,10 @@
| asciinema | ghcr.io/asciinema/asciinema-server:latest | Platform for hosting and sharing terminal session recordings |
| asciinema-pg-db | postgres:14-alpine | |
| audiobookshelf | ghcr.io/advplyr/audiobookshelf:latest | Podcasts, eBooks, & Audiobooks |
| audiomuse-ai-flask | ghcr.io/neptunehub/audiomuse-ai:0.7.12-beta | Automatic playlist generation using AI |
| audiomuse-ai-flask | ghcr.io/neptunehub/audiomuse-ai:0.7.9-beta | Platform for hosting and sharing terminal session recordings |
| audiomuse-ai-pg | postgres:15-alpine | |
| audiomuse-ai-valkey | docker.io/valkey/valkey:9-alpine | |
| audiomuse-ai-worker | ghcr.io/neptunehub/audiomuse-ai:0.7.12-beta | |
| audiomuse-ai-worker | ghcr.io/neptunehub/audiomuse-ai:0.7.9-beta | |
| authelia | authelia/authelia:master | Authentication/authorization server with MFA & SSO |
| authelia-pg | postgres:16-alpine | |
| authelia-valkey | docker.io/valkey/valkey:9-alpine | |
@@ -30,7 +109,7 @@
| bytestash | ghcr.io/jordan-dalby/bytestash:latest | Code Gists/Snippets |
| changedetection | ghcr.io/dgtlmoon/changedetection.io | Page change monitoring with alerts |
| changedetection-chrome | dgtlmoon/sockpuppetbrowser:latest | |
| chrome | gcr.io/zenika-hub/alpine-chrome:124 | |
| chrome | gcr.io/zenika-hub/alpine-chrome:123 | |
| clipcascade | sathvikrao/clipcascade:latest | Online file converter |
| cloudflareddns | ghcr.io/hotio/cloudflareddns:latest | |
| convertx | ghcr.io/c4illin/convertx | Online file converter |
@@ -55,7 +134,7 @@
| garage | dxflrs/garage:v2.1.0 | |
| garage-webui | khairul169/garage-webui:latest | S3-compatible storage backend |
| ghost | ghost:latest | Personal blog |
| gitea | gitea/gitea:1.25.2 | Private Code Repo |
| gitea | gitea/gitea:1.25.1 | Private Code Repo |
| gitea-db | postgres:14 | |
| gitea-runner | gitea/act_runner:latest | |
| gitea-sonarqube-bot | justusbunsi/gitea-sonarqube-bot:v0.4.0 | |
@@ -105,6 +184,7 @@
| maxun-frontend | getmaxun/maxun-frontend:latest | No-code web data extraction platform |
| maxun-pg-db | postgres:17-alpine | |
| maxun-valkey | docker.io/valkey/valkey:9-alpine | |
| meilisearch | getmeili/meilisearch:v1.24 | |
| meme-search-pro | ghcr.io/neonwatty/meme_search_pro:latest | Meme search engine built with Python and Ruby |
| meme-search-pro-img2txt-gen | ghcr.io/neonwatty/image_to_text_generator:latest | |
| meme-search-db | pgvector/pgvector:pg17 | |
@@ -114,7 +194,7 @@
| mixpost-valkey | docker.io/valkey/valkey:9-alpine | |
| mgob | stefanprodan/mgob | Headless Automated MongoDB Backups |
| mongodb | mongo:7 | |
| mongodb-exporter | percona/mongodb_exporter:2.37.0 | |
| mongodb-exporter | percona/mongodb_exporter:0.47.1 | |
| multi-scrobbler | foxxmd/multi-scrobbler | JS App for scrobbling/recording play history from/to multiple sources |
| n8n | docker.n8n.io/n8nio/n8n | Extendable workflow automation tool to easily automate tasks |
| navidrome | deluan/navidrome:latest | Music Streaming |
@@ -123,6 +203,7 @@
| nocodb | nocodb/nocodb:latest | Turn any SQL-based database into a smart spreadsheet |
| nocodb-pg-db | postgres:16-alpine | |
| nocodb-valkey | docker.io/valkey/valkey:9-alpine | |
| ollama | ollama/ollama:latest | |
| ombi | lscr.io/linuxserver/ombi:latest | Media Requests |
| omnitools | iib0011/omni-tools:latest | Tools for common tasks |
| omnipoly | kweg/omnipoly:latest | Open-source language translation with LanguageTool, LibreTranslate, & Ollama |
@@ -167,9 +248,9 @@
| signoz-clickhouse | clickhouse/clickhouse-server:25.5.6-alpine | |
| signoz-init-clickhouse | clickhouse/clickhouse-server:25.5.6-alpine | |
| signoz-logspout | pavanputhra/logspout-signoz | |
| signoz-otel-collector | signoz/signoz-otel-collector:v0.129.12 | |
| signoz-schema-migrator-async | signoz/signoz-schema-migrator:v0.129.12 | |
| signoz-schema-migrator-sync | signoz/signoz-schema-migrator:v0.129.12 | |
| signoz-otel-collector | signoz/signoz-otel-collector:v0.129.8 | |
| signoz-schema-migrator-async | signoz/signoz-schema-migrator:v0.129.8 | |
| signoz-schema-migrator-sync | signoz/signoz-schema-migrator:v0.129.8 | |
| signoz-zookeeper-1 | signoz/zookeeper:3.7.1 | |
| sonarqube | mc1arke/sonarqube-with-community-branch-plugin:lts | Code/DevOps quality/security |
| sonarqube-pg-db | postgres:17-alpine | |
@@ -179,11 +260,11 @@
| soularr-dashboard | ghcr.io/mrusse/soularr:main | Dashboard for monitoring Soularr |
| soulseek | slskd/slskd | Modern client-server application for the Soulseek file-sharing network. |
| speedtest-tracker | lscr.io/linuxserver/speedtest-tracker:latest | Self-hosted internet performance tracking |
| stable-diffusion-webui | ghcr.io/neggles/sd-webui-docker:latest | |
| stirling-pdf | docker.stirlingpdf.com/stirlingtools/stirling-pdf:latest | PDF Operations |
| swag | lscr.io/linuxserver/swag:latest | SWAG Dashboard for proxies |
| tandoor | vabene1111/recipes | Recipes, cookbooks, meal-planning, & grocery lists |
| tandoor-pg | postgres:16-alpine | |
| tdarr | ghcr.io/haveagitgat/tdarr:2.58.02 | Distributed transcode automation |
| unmanic | josh5/unmanic:latest | Library Optimizer |
| uptimekuma | louislam/uptime-kuma:latest | HTTP Endpoint Monitoring |
| vault | hashicorp/vault:latest | HashiCorp Vault for secrets, key/value stores, etc. |
+157 -196
View File
@@ -261,25 +261,17 @@ services:
APPRISE_ATTACH_SIZE: 500
APPRISE_CONFIG_DIR: /config
APPRISE_STATEFUL_MODE: simple
image: lscr.io/linuxserver/apprise-api:latest@sha256:a99a83e24e09d548279906495ba26b7f7def29feae0300583085780cd162a98d
image: lscr.io/linuxserver/apprise-api:latest@sha256:83a67230d071dd424ee004a0e88f35209f29d413ece2db515c4454aa4097c83f
labels:
swag: enable
swag_proto: http
swag_port: 8000
swag_auth: authelia
swag_auth_bypass: /status,/notify/,/details,/metrics,/json/urls
swag_url: apprise.${MY_TLD}
swag.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.parent: Rinoa
swag.uptime-kuma.name: Apprise-API
swag.uptime-kuma.monitor.url: https://apprise.${MY_TLD}
swag.uptime-kuma.monitor.interval: 300
swag.uptime-kuma.monitor.retryInterval: 60
swag.uptime-kuma.monitor.maxretries: 5
cloudflare.tunnel.enable: true
cloudflare.tunnel.hostname: apprise.${MY_TLD}
cloudflare.tunnel.service: http://apprise:8000
cloudflare.tunnel.zonename: ${MY_TLD}
cloudflare.tunnel.no_tls_verify: true
homepage.group: Infrastructure/App Performance Monitoring
homepage.name: Apprise
homepage.icon: apprise.png
homepage.href: https://apprise.${MY_TLD}
homepage.href: http://192.168.1.254:54995
homepage.description: Multi-channel notification API
homepage.widget.type: customapi
homepage.widget.headers: "Accept: application/json"
@@ -357,7 +349,7 @@ services:
URL_HOST: asciinema.trez.wtf
URL_PORT: 4000
URL_SCHEME: https
image: ghcr.io/asciinema/asciinema-server:latest@sha256:ce1dcd55850219d2b4fa729e5f6c64efbb0af1b05d94bd150334770231762507
image: ghcr.io/asciinema/asciinema-server:latest@sha256:fad89accd5cedb366cd9213ed90e02c4f3c069458771122a9065bc7ffb2e93e1
labels:
homepage.group: Code/DevOps
homepage.name: Asciinema
@@ -395,7 +387,7 @@ services:
interval: 2s
timeout: 5s
retries: 10
image: postgres:14-alpine@sha256:1bf14357b97fe10f21f2eda7f0d230b2514ab5770ab81cb9cd6cce6750d68b26
image: postgres:14-alpine@sha256:5b450860beab0a9f64dca71b0f8f1f0daa12dbece441af5f2f071d7e579f4eb0
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
@@ -470,7 +462,7 @@ services:
condition: service_healthy
environment:
AI_MODEL_PROVIDER: OLLAMA
OLLAMA_SERVER_URL: http://192.168.1.249:11434/api/generate
OLLAMA_SERVER_URL: http://ollama:11434/api/generate
SERVICE_TYPE: "flask"
MEDIASERVER_TYPE: "navidrome"
NAVIDROME_URL: http://navidrome:4533/
@@ -482,13 +474,13 @@ services:
POSTGRES_HOST: audiomuse-ai-pg
POSTGRES_PORT: 5432
REDIS_URL: redis://audiomuse-ai-valkey:6379/0
TEMP_DIR: /app/temp_audio
image: ghcr.io/neptunehub/audiomuse-ai:0.7.12-beta@sha256:a0ed658b75d66044e3884cbf94acf5e016d4898bac4d5f0f25929b066c3e5f9c
TEMP_DIR: /app/temp_audio"
image: ghcr.io/neptunehub/audiomuse-ai:0.7.9-beta@sha256:2a4bfc79f0ebd4f11881a4817276dbf4ef5981fa1b3cd6adbbfc6a3ea54b25a4
labels:
homepage.group: Media Library
homepage.name: AudioMuse-AI
homepage.href: https://muse.${MY_TLD}
homepage.description: Automatic playlist generation using AI
homepage.description: Platform for hosting and sharing terminal session recordings
homepage.icon: /icons/audiomuseai.png
swag: enable
swag_auth: authelia
@@ -522,7 +514,7 @@ services:
retries: 5
start_period: 30s
timeout: 10s
image: postgres:15-alpine@sha256:aa7b1ef595e165f0b780162e3a41edd0a7ed3ea672eb8a0f81615ba725e62bc5
image: postgres:15-alpine@sha256:9333aa24f8fa85b3792c4a19be5c4b61eafd4ecdd7a56cdd0dfbd620d5b0a825
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
@@ -543,7 +535,7 @@ services:
condition: service_healthy
environment:
AI_MODEL_PROVIDER: OLLAMA
OLLAMA_SERVER_URL: http://192.168.1.249:11434/api/generate
OLLAMA_SERVER_URL: http://ollama:11434/api/generate
SERVICE_TYPE: "worker"
MEDIASERVER_TYPE: "navidrome"
NAVIDROME_URL: http://navidrome:4533/
@@ -556,7 +548,7 @@ services:
POSTGRES_PORT: 5432
REDIS_URL: "redis://audiomuse-ai-valkey:6379/0"
TEMP_DIR: "/app/temp_audio"
image: ghcr.io/neptunehub/audiomuse-ai:0.7.12-beta@sha256:a0ed658b75d66044e3884cbf94acf5e016d4898bac4d5f0f25929b066c3e5f9c
image: ghcr.io/neptunehub/audiomuse-ai:0.7.9-beta@sha256:2a4bfc79f0ebd4f11881a4817276dbf4ef5981fa1b3cd6adbbfc6a3ea54b25a4
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
@@ -585,7 +577,7 @@ services:
expose:
- 9091
- 9959 # Metrics port for Prometheus
image: authelia/authelia:master@sha256:623978b755878897e82915aa084b4f17037b78baea4afafeb160d1bde679fa1c
image: authelia/authelia:master@sha256:93c84fc3d8a9818f8964d55901b1150176e8f2b1fe8bef7f2bec027f07adcc31
labels:
homepage.group: Privacy/Security
homepage.name: Authelia
@@ -621,7 +613,7 @@ services:
POSTGRES_DB: authelia
expose:
- 5432
image: postgres:16-alpine@sha256:79c06d285ed9186efbbc45c73413b3c3510c3c94ffede2f25d1e523f74d07f28
image: postgres:16-alpine@sha256:236d1ccc720e386c4e03facd46a107c34bc872858e6808c27d522032dfd5e273
networks:
default: null
profiles: ["rinoa-apps"]
@@ -679,7 +671,7 @@ services:
TZ: ${TZ}
DOCKER_MODS: ghcr.io/gilbn/theme.park:bazarr
hostname: Rinoa
image: lscr.io/linuxserver/bazarr:latest@sha256:2be164c02c0bb311b6c32e57d3d0ddc2813d524e89ab51a3408c1bf6fafecda5
image: lscr.io/linuxserver/bazarr:latest@sha256:a42fef2a5ffa1dca8714e12892ba0b8de5c6c513f1bcdb1ffe4143e715cffb45
labels:
homepage.group: Servarr Stack
homepage.name: Bazarr
@@ -726,7 +718,7 @@ services:
container_name: beszel
extra_hosts:
- host.docker.internal:host-gateway
image: henrygd/beszel:latest@sha256:24c5513b364a2cb6f966819389128999817afbaebfe81ba2980289e39326f484
image: henrygd/beszel:latest@sha256:358d452b97e0e1714f0acab3442f753528c3ec006df513710315c9c96dff4b87
labels:
homepage.group: Infrastructure/App Performance Monitoring
homepage.name: Beszel
@@ -758,16 +750,14 @@ services:
beszel-agent:
container_name: beszel-agent
depends_on:
beszel:
condition: service_started
required: true
- beszel
environment:
PORT: 45876
# Do not remove quotes around the key
KEY: "${BESZEL_RINOA_AGENT_KEY}"
expose:
- 45876
image: henrygd/beszel-agent:latest@sha256:dee59d68ac327a755aec7651dd31b9f9a6d7db3da6f093e16e8c36c1f71a18cd
image: henrygd/beszel-agent:latest@sha256:cfd032ce5e420422d2958f50f4df0df49b08f79e5a587e2574cde9824ad10b34
network_mode: host
profiles: ["rinoa-apps"]
restart: unless-stopped
@@ -889,7 +879,7 @@ services:
- 3000
extra_hosts:
- "host.docker.internal:host-gateway"
image: ghcr.io/browserless/chromium:latest@sha256:78069f933b3b457410a9348845d7273d8ada8e2f10a85b5f5a7e9895f1334093
image: ghcr.io/browserless/chromium:latest@sha256:da3aab64fa0419676a69c866755802796bda22527f699c577c3c202d84bb1205
labels:
swag: enable
swag_proto: http
@@ -949,7 +939,7 @@ services:
TZ: ${TZ}
LC_ALL: en_US.UTF-8
LISTEN_HOST: 0.0.0.0
image: ghcr.io/dgtlmoon/changedetection.io@sha256:99cf11f04b5d1f1300b5b68f17dc22e76bdb5d6695d7e6590d2df92eca8fb339
image: ghcr.io/dgtlmoon/changedetection.io@sha256:87bff8434cb4574cae634c995d4ce519631eadc0fcfcc1d64123122094605d99
labels:
homepage.description: Page change monitoring with alerts
homepage.group: System Administration
@@ -980,7 +970,7 @@ services:
cap_add:
- SYS_ADMIN
container_name: changedetection-chrome
image: dgtlmoon/sockpuppetbrowser:latest@sha256:50619e56663d81c2b46a2219ea91220c05d2e403448df8bdff12dbe4b1ab910b
image: dgtlmoon/sockpuppetbrowser:latest@sha256:9f2df6791a4cd9b2c3138cb62b5a8de7f27953cab84729fe09d28cbd341a8973
environment:
SCREEN_WIDTH: 1920
SCREEN_HEIGHT: 1024
@@ -997,7 +987,7 @@ services:
- --remote-debugging-address=0.0.0.0
- --remote-debugging-port=9222
- --hide-scrollbars
image: gcr.io/zenika-hub/alpine-chrome:124@sha256:1a0046448e0bb6c275c88f86e01faf0de62b02ec8572901256ada0a8c08be23f
image: gcr.io/zenika-hub/alpine-chrome:123@sha256:e38563d4475a3d791e986500a2e4125c9afd13798067138881cf770b1f6f3980
profiles: ["rinoa-apps"]
restart: unless-stopped
clipcascade:
@@ -1101,11 +1091,9 @@ services:
crowdsec:
container_name: crowdsec
depends_on:
swag:
condition: service_started
required: true
- swag
environment:
DOCKER_HOST: tcp:/${DOCKER_VOLUME_CONFIG}proxy:2375
DOCKER_HOST: tcp://dockerproxy:2375
GID: 1000
BOUNCER_KEY_SWAG: ${CROWDSEC_SWAG_API_KEY}
COLLECTIONS: >-
@@ -1158,7 +1146,7 @@ services:
environment:
MB_DB_FILE: /data/metabase.db
MGID: ${GID-1000}
image: metabase/metabase@sha256:bbea3d5c486de65f1b80b2315c36b184ec9ee66525cf49e8c596b3707485008a
image: metabase/metabase@sha256:7cde7e7129ed13ec153ba7f5d08d79f4cb7db84dc06d9a47d411e66f65fd6933
labels:
homepage.group: Privacy/Security
homepage.name: CrowdSec Dashboard
@@ -1274,7 +1262,7 @@ services:
DAGU_AUTH_TOKEN: ${DAGU_AUTH_TOKEN}
PUID: ${PUID}
PGID: ${PGID}
image: ghcr.io/dagu-org/dagu:alpine@sha256:42657c77f5eb1a4fd2b0cf222ae1b2403cc2dc9d37fe56d66f9c080e4aaa7688
image: ghcr.io/dagu-org/dagu:alpine@sha256:4c18bc8f739b82fc7f522625115c942c5b6ee5cfcb036e3355c08ba97fb4c654
labels:
homepage.group: Automation
homepage.name: Dagu
@@ -1352,7 +1340,7 @@ services:
retries: 30
start_period: 30s
timeout: 10s
image: freikin/dawarich:latest@sha256:c3225f42870d322d7a2fa5f2c60833de8860ffcb30c2c084ab8eb797bf5a3010
image: freikin/dawarich:latest@sha256:74bfa35f8e6d29ad1ee820c2b5461e44804e3170cf82487e71da0035f6528898
labels:
homepage.group: Privacy/Security
homepage.name: Dawarich
@@ -1392,7 +1380,7 @@ services:
retries: 5
start_period: 30s
timeout: 10s
image: postgis/postgis:17-3.5-alpine@sha256:f439e384b4111f0bc21b4a49e223f8fd7f40516285fc3825d7a8af15e710d47c
image: postgis/postgis:17-3.5-alpine@sha256:e90e539b455df0636d7105cf9ca9fccb2b7f61134679bf025b8dc70a14b44c92
profiles: ["rinoa-apps"]
restart: always
shm_size: 1G
@@ -1443,7 +1431,7 @@ services:
retries: 30
start_period: 30s
timeout: 10s
image: freikin/dawarich:latest@sha256:c3225f42870d322d7a2fa5f2c60833de8860ffcb30c2c084ab8eb797bf5a3010
image: freikin/dawarich:latest@sha256:74bfa35f8e6d29ad1ee820c2b5461e44804e3170cf82487e71da0035f6528898
profiles: ["rinoa-apps"]
restart: on-failure
stdin_open: true
@@ -1611,9 +1599,6 @@ services:
DOCKER_HOST_2_URL: tcp://192.168.1.252:2375
DOCKER_HOST_2_NAME: Rikku
DOCKER_HOST_2_PUBLIC_NAME: 192.168.1.252
DOCKER_HOST_3_URL: tcp://192.168.1.249:2375
DOCKER_HOST_3_NAME: Ultima
DOCKER_HOST_3_PUBLIC_NAME: 192.168.1.249
labels:
swag: enable
swag_proto: http
@@ -1642,7 +1627,7 @@ services:
PUID: ${PUID}
TZ: ${TZ}
hostname: Rinoa
image: lscr.io/linuxserver/duplicati:latest@sha256:1efa096a59254e8232dfe1e1cfac1d16ec783b6b2baf2f814d2b53b7b26a41be
image: lscr.io/linuxserver/duplicati:latest@sha256:ed6cee6ea5d9ebe28f7eae68adb8a8760869d316d42c2a56eec489dbf2f95232
labels:
swag: enable
swag_port: 8200
@@ -1695,7 +1680,7 @@ services:
type: bind
excalidraw:
container_name: excalidraw
image: "excalidraw/excalidraw:latest@sha256:7f48a686abb742397c1a9dc146812a60198e356c1fece05c2f1e011d2971c3bf"
image: "excalidraw/excalidraw:latest@sha256:67c6b93d6155fac09d30759ea5f28e5ce01b4e865a783fb418c878806bf5397d"
labels:
homepage.group: Personal Tools
homepage.name: Excalidraw
@@ -1726,7 +1711,7 @@ services:
WEEKLY_JAMS_FLAGS: --playlist=weekly-jams --download-mode=skip
DAILY_JAMS_SCHEDULE: 30 2 * * *
DAILY_JAMS_FLAGS: --playlist=daily-jams --download-mode=skip
image: ghcr.io/lumepart/explo:latest@sha256:d323d0e1e8aaced56907f0357cb4172d879b7ce5efcc88ffe3421cfb8d846b2d
image: ghcr.io/lumepart/explo:latest@sha256:4d8870ea033cb27e078772e60c4ca7b92f8c3ece062de8ceaec047e46e79f1df
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
@@ -1735,7 +1720,7 @@ services:
- ${DOCKER_VOLUME_STORAGE}/Audio/Playlists:/playlists
fastenhealth:
container_name: fastenhealth
image: ghcr.io/fastenhealth/fasten-onprem:main@sha256:9b8ad1e45695d43d8b469648518b5a9037a43cd80d7fdacbd49bbaf219b4c0fc
image: ghcr.io/fastenhealth/fasten-onprem:main@sha256:ed5353eb49d0dbd3e3e30aeb1b71d430a35aebe6823637dcd3dca7aa9b7fa3c3
labels:
homepage.group: Lifestyle
homepage.name: Fasten Health
@@ -1779,7 +1764,7 @@ services:
BROWSER_TIMEOUT: 40000
TEST_URL: https://duckduckgo.com
hostname: Rinoa
image: ghcr.io/flaresolverr/flaresolverr:latest@sha256:7962759d99d7e125e108e0f5e7f3cdbcd36161776d058d1d9b7153b92ef1af9e
image: ghcr.io/flaresolverr/flaresolverr:latest@sha256:4f4e5f759aa3a9a64305e99188ea1db1ec2944a5e7d290d2b089af5f2f6f48e4
networks:
default: null
ports:
@@ -1858,7 +1843,7 @@ services:
mail__options__auth__pass: ${POSTAL_SMTP_AUTH_PASSWORD}
mail__from: "'Ghost @ Rinoa' <noreply@${MY_TLD}>"
url: https://blog.${MY_TLD}
image: ghost:latest@sha256:8a30cacb126262887f4db101e438271ade0b51437917b8165d26b0fede72ccf2
image: ghost:latest@sha256:287c765e594fd1197a9acde9328e02dfa6c54b3d8dd2f282e8d063850af6bd3f
labels:
homepage.group: Lifestyle
homepage.name: Ghost
@@ -1903,7 +1888,7 @@ services:
GITEA__mailer__SMTP_PORT: 25
GITEA__mailer__USER: ${POSTAL_SMTP_AUTH_USER}
GITEA__mailer__PASSWD: ${POSTAL_SMTP_AUTH_PASSWORD}
image: gitea/gitea:1.25.2@sha256:534428e78fc00d3ac8647f3467a3f91252acf23a46ea0c872f03191e3c878f7d
image: gitea/gitea:1.25.1@sha256:b3aee0f6fa4ff3271180a2388bb796be5cced8828685b968a310d70e881fcbb3
labels:
cloudflare.tunnel.enable: true
cloudflare.tunnel.hostname: git-ssh.${MY_TLD}
@@ -1963,7 +1948,7 @@ services:
interval: 10s
start_period: 20s
test: ["CMD-SHELL", "pg_isready -U gitea -d gitea"]
image: postgres:14@sha256:ca25035f7e6f74552655a1c5e4a9eb21f85e9d316f1f70371f790ef70095dd58
image: postgres:14@sha256:e2f1e5757d8ea94774e6f27150c36b0aa56908381d67c4c6e3dfabaf10bfc584
networks:
default: null
profiles: ["rinoa-infra"]
@@ -2043,7 +2028,7 @@ services:
VPN_SERVICE_PROVIDER: private internet access
expose:
- 8000
image: qmcgaw/gluetun:latest@sha256:6a59b7901068b7c50ef52200152db3afd4b9cebc13e272b2169de4cdcad91006
image: qmcgaw/gluetun:latest@sha256:3127d0bdce249750cda0dd9427234625a190fd6abef7eedbd20fd5fbc8d9ca5d
ports:
- 3333:3333
- 3334:3334
@@ -2110,7 +2095,7 @@ services:
guacamole:
container_name: guacamole
environment:
DOCKER_HOST: tcp:/${DOCKER_VOLUME_CONFIG}proxy:2375
DOCKER_HOST: tcp://dockerproxy:2375
EXTENSIONS: "auth-totp"
TZ: ${TZ}
image: flcontainers/guacamole:latest@sha256:81a420f386ef8cbb4697208e13ea90f6a10a54619981241bed672e4a41b5f77f
@@ -2219,7 +2204,7 @@ services:
REDIS_DBINDEX: 0
healthcheck:
disable: false
image: ghcr.io/immich-app/immich-server:release@sha256:f8d06a32b1b2a81053d78e40bf8e35236b9faefb5c3903ce9ca8712c9ed78445
image: ghcr.io/immich-app/immich-server:release@sha256:4504d794123c3f5410cc45bbc61e4d7dbcacec1e1b0cd2e599691430c94e5849
labels:
swag: enable
swag_proto: http
@@ -2262,7 +2247,7 @@ services:
container_name: immich-machine-learning
healthcheck:
disable: false
image: ghcr.io/immich-app/immich-machine-learning:release@sha256:379e31b8c75107b0af8141904baa8cc933d7454b88fdb204265ef11749d7d908
image: ghcr.io/immich-app/immich-machine-learning:release@sha256:bf339cbb44af6c2ef25d9128e1da51b2bec0cfd524846a83e3017c21bd71ddb4
profiles: ["rinoa-apps"]
restart: always
volumes:
@@ -2433,7 +2418,7 @@ services:
container_name: invidious-companion
environment:
SERVER_SECRET_KEY: ${INVID_COMPANION_KEY}
image: quay.io/invidious/invidious-companion:latest@sha256:9c6039ebe1691e70c76aefd207b1ea2784a4d8d1a7c531cdb18e6d1317c468e9
image: quay.io/invidious/invidious-companion:latest@sha256:a445ef2390360a491c6e4ebee9e53588792ebdbfebf505a6b5df45cffaa8f554
logging:
options:
max-size: "1G"
@@ -2457,7 +2442,7 @@ services:
test:
- CMD-SHELL
- pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB
image: docker.io/library/postgres:14@sha256:ca25035f7e6f74552655a1c5e4a9eb21f85e9d316f1f70371f790ef70095dd58
image: docker.io/library/postgres:14@sha256:e2f1e5757d8ea94774e6f27150c36b0aa56908381d67c4c6e3dfabaf10bfc584
networks:
default: null
profiles: ["rinoa-apps"]
@@ -2473,7 +2458,7 @@ services:
bind:
create_host_path: true
- source: ${DOCKER_VOLUME_CONFIG}/invidious/entrypoint/init-invidious-db.sh
target: ${DOCKER_VOLUME_CONFIG}-entrypoint-initdb.d/init-invidious-db.sh
target: /docker-entrypoint-initdb.d/init-invidious-db.sh
type: bind
bind:
create_host_path: true
@@ -2506,7 +2491,7 @@ services:
container_name: jellyfin
environment:
JELLYFIN_PublishedServerUrl: https://jf.${MY_TLD}
image: jellyfin/jellyfin@sha256:aab0b50a3ce43a41621fc7040a379cc57174059aec8f9c17a90176649a0c1ab1
image: jellyfin/jellyfin@sha256:d43a8878689311f841a1967f899f54db56877bf6b426fd7ff870ac1a6fd1dce4
labels:
homepage.group: Media Library
homepage.name: Jellyfin
@@ -3133,7 +3118,7 @@ services:
POSTGRES_DB: ${JOPLIN_POSTGRES_DATABASE}
expose:
- 5432
image: postgres:17-alpine@sha256:9a78577340f3d26384b6aebeb475c0d46d664fd4ffa68503b4be4e4462745f94
image: postgres:17-alpine@sha256:465e9a4c730a4ea32e4560f2f1115a8775443b879b7c78b9591420510fd3a981
networks:
default: null
profiles: ["rinoa-apps"]
@@ -3189,7 +3174,7 @@ services:
restart: unless-stopped
karakeep:
container_name: karakeep
image: ghcr.io/karakeep-app/karakeep:release@sha256:be023336ed2ffb4c82209b068fd68f31e33b4a365e8222f8e8fbb499085c00af
image: ghcr.io/karakeep-app/karakeep:release@sha256:cd2348520ba25bbee64199468cd41758ab325eecd6a3a5c40cd6443a1607f9e9
environment:
BROWSER_WEB_URL: http://chrome:9222
DATA_DIR: /data
@@ -3199,7 +3184,7 @@ services:
NEXTAUTH_SECRET: ${KARAKEEP_NEXTAUTH_SECRET}
NEXTAUTH_URL: https://kkeep.${MY_TLD}
OPENAI_API_KEY: ${LIBRECHAT_OPENAI_API_KEY}
OLLAMA_BASE_URL: http://192.168.1.249:11434
OLLAMA_BASE_URL: http://ollama:11434
labels:
homepage.group: Lifestyle
homepage.name: Karakeep
@@ -3244,7 +3229,7 @@ services:
LT_UPDATE_MODELS: true
healthcheck:
test: ["CMD-SHELL", "./venv/bin/python scripts/healthcheck.py"]
image: libretranslate/libretranslate@sha256:8724755a6f9cc7ac6c1241784baef88abfe28015966271e7f78bc106d8914d78
image: libretranslate/libretranslate@sha256:4330ec7f3b397572f1e891cefa94b3b113e79df7f7539aaecaae1feadb4d1bcf
labels:
homepage.group: Personal Tools
homepage.name: LibreTranslate
@@ -3278,7 +3263,7 @@ services:
TZ: America/New_York
DOCKER_MODS: ghcr.io/gilbn/theme.park:lidarr
hostname: Rinoa
image: lscr.io/linuxserver/lidarr:latest@sha256:01d64fdba60554f5928b2ff8294a45c2e049423d5a9bac62167c40bdaeca231f
image: lscr.io/linuxserver/lidarr:latest@sha256:1d49ebdfaae525d9e1e4ad5b7fa1753e364da44ac1b5e6acae241a2173ac09a4
labels:
homepage.group: Servarr Stack
homepage.name: Lidarr
@@ -3516,7 +3501,7 @@ services:
REDIS_URL: redis://manyfold-valkey:6379/2
SECRET_KEY_BASE: ${MANYFOLD_SECRET_KEY_BASE}
MUTLIUSER: enabled
image: lscr.io/linuxserver/manyfold:latest@sha256:c5e6025fe0a2c6b804454e9324ac1757332ef37734279cb47b360f21a146a2d0
image: lscr.io/linuxserver/manyfold:latest@sha256:d1641224025e227201b6110a9cb699b324395b0980d35f2808769f4ea79846f1
labels:
homepage.group: Lifestyle
homepage.name: Manyfold
@@ -3562,7 +3547,7 @@ services:
timeout: 10s
retries: 5
hostname: Rinoa
image: linuxserver/mariadb@sha256:73a403f999eb7317b0fcd084f42bd77ed813f4e09d2a4ebc1ba90ea48e43041a
image: linuxserver/mariadb@sha256:195b6be2d3e2dd0744a54ba2542a136c572b3375bc7f019e37a505da5da3022b
networks:
default: null
ports:
@@ -3616,7 +3601,7 @@ services:
AWS_SECRET_ACCESS_KEY: ${MASTODON_MINIO_SECRET_KEY}
expose:
- 3000
image: lscr.io/linuxserver/mastodon:latest@sha256:32b5274a9ad46981c1d9ca99616bf876f03d1526e68efa548fac2ea157282033
image: lscr.io/linuxserver/mastodon:latest@sha256:823fe06be2f289f0d2700cb7f4ddaa2d609642c3d4e84779a4af3ee1c27c561a
labels:
swag: enable
swag_proto: http
@@ -3657,7 +3642,7 @@ services:
timeout: 30s
interval: 10s
retries: 5
image: postgres:17-alpine@sha256:9a78577340f3d26384b6aebeb475c0d46d664fd4ffa68503b4be4e4462745f94
image: postgres:17-alpine@sha256:465e9a4c730a4ea32e4560f2f1115a8775443b879b7c78b9591420510fd3a981
profiles: ["rinoa-apps"]
restart: always
volumes:
@@ -3679,7 +3664,7 @@ services:
<<: *maxun-env
expose:
- 8080
image: getmaxun/maxun-backend:latest@sha256:e45e7aec5d9b2794f4c798a03814ac03090e480c6ad134588caa1de7cd372b66
image: getmaxun/maxun-backend:latest@sha256:661dce59f8019476696200bb6a94504645618fb40fefbda8c08aa14f3ce89f42
mem_limit: 2g # Set a 2GB memory limit
ports:
- 8369:8080
@@ -3695,7 +3680,7 @@ services:
depends_on:
- maxun-backend
<<: *maxun-env
image: getmaxun/maxun-frontend:latest@sha256:6d6f2974a153f7d0d9ca8aa72db45bfe875ad6041e73d54e6f84e1337d2279f9
image: getmaxun/maxun-frontend:latest@sha256:0c7e7bc93be4b50aebe6bfd16f32c65d03399955b4d05e3c8f58ea30912bfee9
labels:
swag: enable
swag_proto: http
@@ -3723,7 +3708,7 @@ services:
restart: unless-stopped
maxun-pg-db:
container_name: maxun-pg-db
image: postgres:17-alpine@sha256:9a78577340f3d26384b6aebeb475c0d46d664fd4ffa68503b4be4e4462745f94
image: postgres:17-alpine@sha256:465e9a4c730a4ea32e4560f2f1115a8775443b879b7c78b9591420510fd3a981
environment:
POSTGRES_USER: maxun
POSTGRES_PASSWORD: ${MAXUN_DB_PASSWORD}
@@ -3744,6 +3729,20 @@ services:
<<: *valkey-params
volumes:
- maxun-valkey-data:/data/valkey
meilisearch:
container_name: meilisearch
environment:
MEILI_HOST: http://meilisearch:7700
MEILI_NO_ANALYTICS: true
MEILI_MASTER_KEY: ${MEILISEARCH_MASTER_KEY}
image: getmeili/meilisearch:v1.24@sha256:d991eb07331e9d1f9cec7bc0f9523fd5d51aee3b223d997e0e66206361952056
ports:
- 7700:7700
profiles: ["rinoa-apps"]
restart: always
user: ${PUID}:${PGID}
volumes:
- ${DOCKER_VOLUME_CONFIG}/meilisearch:/meili_data
meme-search-pro:
container_name: meme-search-pro
depends_on:
@@ -3776,7 +3775,7 @@ services:
volumes:
- ${DOCKER_VOLUME_CONFIG}/meme_search_pro/memes/:/rails/public/memes
meme-search-pro-img2txt-gen:
image: ghcr.io/neonwatty/image_to_text_generator:latest@sha256:62d1dbbdab12e543f0ba13d3419ea9d234d61531bef95b910794a31a3c54db51
image: ghcr.io/neonwatty/image_to_text_generator:latest@sha256:177892a96b226e4fe5e49900de31b1960acef92421a7e200b22fa28827d1bfa3
container_name: meme-search-pro-img2txt-gen
deploy:
resources:
@@ -3882,7 +3881,7 @@ services:
create_host_path: true
mixpost:
container_name: mixpost
image: inovector/mixpost:latest@sha256:9a118d60bf1514ff19f5adee0b9d7684f8c00ee520e2bf4bcc295665f048c557
image: inovector/mixpost:latest@sha256:088a0eed84289e9a408294acea969c1eebf80dff803d165629fe20c3442b0f8c
depends_on:
mariadb:
condition: service_healthy
@@ -3959,7 +3958,7 @@ services:
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
image: mongo:7@sha256:542095b9517562dbbd4dd061a19459168237eb5f26841ac0e56c89ebb2eb4173
image: mongo:7@sha256:82db6c6c8103eee46ca820c190742b7c280d02d6f993903a603cec9d56be374b
ports:
- 27017:27017
profiles: ["rinoa-apps"]
@@ -3995,7 +3994,7 @@ services:
LZ_TOKEN: ${MALOJA_LISTENBRAINZ_TOKEN}
SPOTIFY_CLIENT_ID: ${YOUR_SPOTIFY_ID}
SPOTIFY_CLIENT_SECRET: ${YOUR_SPOTIFY_SECRET}
image: foxxmd/multi-scrobbler@sha256:5c261a306f4ee714ebf0e3a0f2aa6c74d312b938a0524884cc42755e91f1343e
image: foxxmd/multi-scrobbler@sha256:47cc038ad87c22dbcc03b49f8ce7b54690447217b33f2307934959b4a3c992a4
labels:
homepage.group: Media Library
homepage.name: Multi-Scrobbler
@@ -4035,7 +4034,7 @@ services:
NODE_ENV: production
WEBHOOK_URL: https://n8n.${MY_TLD}/
GENERIC_TIMEZONE: ${TZ}
image: docker.n8n.io/n8nio/n8n@sha256:0a65e6e5995c19e0cf7e83d6b08ffa6c1898e8a53ff1658e6e7b22e68576c673
image: docker.n8n.io/n8nio/n8n@sha256:4a43ddf853afe3ad44be51379e7ed85c16b974cae26cf732d2fcbf71d0cb16c4
labels:
swag: enable
swag_proto: http
@@ -4122,7 +4121,7 @@ services:
environment:
TZ: ${TZ}
PORT: 20211
image: jokobsk/netalertx:latest@sha256:fd1a4ca4bd4c0f38797b36b4ec5b0928d7add7b9add788d9cedb11fd25a42a65
image: jokobsk/netalertx:latest@sha256:9304e29cd71bf9ddc9f33d6a7ddb3d71bab71815e077ab330f86bcc081598a79
labels:
cloudflare.tunnel.enable: true
cloudflare.tunnel.hostname: net.${MY_TLD}
@@ -4166,7 +4165,7 @@ services:
APACHE_PORT: 11000
expose:
- 11000
image: nextcloud/all-in-one:latest@sha256:bea462cf8835d6034b257ad3f2190eb18ccb1edaec11b8d4d802f322a380efb8
image: nextcloud/all-in-one:latest@sha256:090f59bbef2c6753b2ac58163d3bece84b15af19d9d83d02c33da83080cb6400
labels:
homepage.group: Privacy/Security
homepage.name: NextCloud
@@ -4194,7 +4193,7 @@ services:
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- nextcloud_aio_mastercontainer:/mnt${DOCKER_VOLUME_CONFIG}-aio-config
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
nocodb:
container_name: nocodb
depends_on:
@@ -4254,7 +4253,7 @@ services:
retries: 10
test: 'pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB"'
timeout: 2s
image: postgres:16-alpine@sha256:79c06d285ed9186efbbc45c73413b3c3510c3c94ffede2f25d1e523f74d07f28
image: postgres:16-alpine@sha256:236d1ccc720e386c4e03facd46a107c34bc872858e6808c27d522032dfd5e273
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
@@ -4264,6 +4263,15 @@ services:
<<: *valkey-params
volumes:
- nocodb_valkey_data:/data/valkey
ollama:
container_name: ollama
image: ollama/ollama:latest@sha256:3d8a05e3432d50ea57594fabe971e46cc8fe963a0f9f8c40400bd56cd5388e47
ports:
- 11434:11434
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
- ollama:/root/.ollama
ombi:
container_name: ombi
environment:
@@ -4271,7 +4279,7 @@ services:
PUID: ${PUID}
TZ: America/New_York
hostname: Rinoa
image: lscr.io/linuxserver/ombi:latest@sha256:acefcbde5f9fa09ea39451fc13fcc95aa6a877010b2d92f688a17361ddc14b3b
image: lscr.io/linuxserver/ombi:latest@sha256:edd574de14131cfc1e641904684ff7aa7a98defedd42b8cfdff6159cb2917db1
labels:
homepage.group: Media Library
homepage.name: Ombi
@@ -4346,7 +4354,7 @@ services:
environment:
LANGUAGE_TOOL: http://languagetool:8010
LIBRETRANSLATE: http://libretranslate:5000
OLLAMA: http://192.168.1.249:11434
OLLAMA: http://ollama:11434
OLLAMA_MODEL: smollm2:1.7b
THEME: "pole"
DISABLE_DICTIONARY: false
@@ -4372,38 +4380,30 @@ services:
restart: unless-stopped
open-webui:
container_name: open-webui
depends_on:
ollama:
condition: service_started
required: true
stable-diffusion-webui:
condition: service_started
required: true
environment:
OLLAMA_BASE_URLS: http://192.168.1.249:11434;http://192.168.1.248:11434
WEBUI_AUTH: true
ENABLE_PASSWORD_VALIDATION: true
ENABLE_SIGNUP_PASSWORD_CONFIRMATION: true
ENABLE_SIGNUP: true
ENABLE_LOGIN_FORM: true
OLLAMA_BASE_URLS: http://ollama:11434;http://192.168.1.250:11434;http://192.168.1.252:11434
WEBUI_AUTH: false
ENABLE_IMAGE_GENERATION: "true"
AUTOMATIC1111_BASE_URL: http://192.168.1.248:7860
AUTOMATIC1111_BASE_URL: http://stable-diffusion-webui:7860
IMAGE_SIZE: "1024x1024"
IMAGE_STEPS: "3"
ENABLE_OTEL: true
ENABLE_OTEL_METRICS: true
OTEL_EXPORTER_OTLP_INSECURE: true # Use insecure connection for OTLP, remove in production
OTEL_EXPORTER_OTLP_ENDPOINT: http://192.168.1.254:4317
OTEL_EXPORTER_OTLP_ENDPOINT: http://signoz-otel-collector:4317
OTEL_SERVICE_NAME: open-webui
ENABLE_RAG_WEB_SEARCH: True
RAG_WEB_SEARCH_ENGINE: searxng
RAG_WEB_SEARCH_RESULT_COUNT: 3
RAG_WEB_SEARCH_CONCURRENT_REQUESTS: 10
SEARXNG_QUERY_URL: "http://searxng:8080/search?q=<query>"
ENABLE_LDAP: true
LDAP_SERVER_LABEL: rinoa-ldap
LDAP_SERVER_HOST: lldap
LDAP_SERVER_PORT: 3890
LDAP_ATTRIBUTE_FOR_MAIL: mail
LDAP_ATTRIBUTE_FOR_USERNAME: uid
LDAP_APP_DN: uid=authelia,ou=people,dc=trez,dc=wtf
LDAP_APP_PASSWORD: ${AUTHELIA_AUTH_BIND_LDAP_PASSWORD}
LDAP_SEARCH_BASE: dc=trez,dc=wtf
LDAP_SEARCH_FILTERS: "(&({username_attribute}={input})(objectClass=person))"
LDAP_USE_TLS: false
# LibreTranslate
LT_DEBUG: false
LT_UPDATE_MODELS: true
@@ -4419,7 +4419,7 @@ services:
WEBSOCKET_MANAGER: redis
WEBSOCKET_REDIS_URL: redis://open-webui-valkey:6379/0
REDIS_KEY_PREFIX: open-webui
image: ghcr.io/open-webui/open-webui:main@sha256:c0297cf2f76e0ba21d19eb3a21753d3b271c0247694cba3948677d2a97ec559f
image: ghcr.io/open-webui/open-webui:main@sha256:53a4d2fc8c7a7cc620cd18e6fe416ed9940f2db87fddf837e3aa55111bec6995
labels:
homepage.group: Personal Tools
homepage.name: Open WebUI
@@ -4429,6 +4429,7 @@ services:
swag: enable
swag_port: 8080
swag_proto: http
swag_auth: authelia
swag_url: ai.${MY_TLD}
swag.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.parent: Rinoa
@@ -4470,7 +4471,7 @@ services:
PAPERLESS_URL: https://docs.${MY_TLD}
USERMAP_GID: ${PGID}
USERMAP_UID: ${PUID}
image: ghcr.io/paperless-ngx/paperless-ngx:latest@sha256:8ffd737c69a569bbdadc118e7f54b0b1050ffac2868fdf9e390a68cb7c82a79d
image: ghcr.io/paperless-ngx/paperless-ngx:latest@sha256:5f2a72fd7be42c6b1d8fa1751606a140452d4c3e6e829ae6b1b15e3c95129481
labels:
swag: enable
swag_proto: http
@@ -4562,7 +4563,7 @@ services:
interval: 5s
timeout: 5s
retries: 5
image: postgres:17-alpine@sha256:9a78577340f3d26384b6aebeb475c0d46d664fd4ffa68503b4be4e4462745f94
image: postgres:17-alpine@sha256:465e9a4c730a4ea32e4560f2f1115a8775443b879b7c78b9591420510fd3a981
restart: unless-stopped
volumes:
- pgbackweb-data:/var/lib/postgresql/data
@@ -4637,7 +4638,7 @@ services:
interval: 10s
timeout: 5s
retries: 5
image: postgres:16-alpine@sha256:79c06d285ed9186efbbc45c73413b3c3510c3c94ffede2f25d1e523f74d07f28
image: postgres:16-alpine@sha256:236d1ccc720e386c4e03facd46a107c34bc872858e6808c27d522032dfd5e273
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
@@ -4751,7 +4752,7 @@ services:
expose:
- 9000
- 9443
image: portainer/portainer-ce:alpine@sha256:5135ffc483be84b773288c92c80a054a234abcf615975d6122cbe930f5c65d27
image: portainer/portainer-ce:alpine@sha256:adcb33ce6a1debd31918a215ebfd08bca84259b907466d93cea63bd538d20f02
labels:
swag: enable
swag_proto: http
@@ -4925,7 +4926,7 @@ services:
TP_COMMUNITY_THEME: false
TP_THEME: space-gray
hostname: Rinoa
image: lscr.io/linuxserver/prowlarr:latest@sha256:475853535de3de8441b87c1457c30f2e695f4831228b12b6b7274e9da409d874
image: lscr.io/linuxserver/prowlarr:latest@sha256:643220338204525524db787ff38a607261597f49d1f550694acdb3e908e2b43e
labels:
homepage.group: Servarr Stack
homepage.name: Prowlarr
@@ -4972,7 +4973,7 @@ services:
qbittorrentvpn:
required: true
condition: service_started
image: ghcr.io/stuffanthings/qbit_manage:latest@sha256:4f36632a138b4e5aeab3b765b7f389087bfb140c80dbbec1343eca74dc351245
image: ghcr.io/stuffanthings/qbit_manage:latest@sha256:64f749b97604d607747fc8b790821cf0317d8107385ea111afe1ed1c9d1d5b11
environment:
# Web API Configuration
QBT_WEB_SERVER: true # Set to true to enable web API
@@ -5030,7 +5031,7 @@ services:
VPN_PASS: ${DELUGEVPN_ENVIRONMENT_VPN_PASS}
VPN_PROV: pia
WEBUI_PORT: 8080
image: ghcr.io/binhex/arch-qbittorrentvpn:latest@sha256:bfe0b55f9785ffd83a24e9a9591151ef6372803f0ce4755e79b7a417afc8f1ac
image: ghcr.io/binhex/arch-qbittorrentvpn:latest@sha256:bd8fcf9cd7fbf63e5c8816f98ae806ac055e915d970f59a4d40b0d99685a3b1e
labels:
homepage.group: Downloaders
homepage.name: qBittorrent
@@ -5141,7 +5142,7 @@ services:
PUID: ${PUID}
TZ: ${TZ}
hostname: Rinoa
image: lscr.io/linuxserver/radarr:latest@sha256:06ac318ecb95a34c7b229568dcb4271f02cb5007bb189a0dd67a2032864187ca
image: lscr.io/linuxserver/radarr:latest@sha256:c984533510abe0219a70e80d15bd0d212b7df21baa0913759c4ce6cc9092240b
labels:
homepage.group: Servarr Stack
homepage.name: Radarr
@@ -5236,7 +5237,7 @@ services:
POSTGRES_PASSWORD: ${REACTIVE_RESUME_PGSQL_PASSWORD}
expose:
- 5432
image: postgres:16-alpine@sha256:79c06d285ed9186efbbc45c73413b3c3510c3c94ffede2f25d1e523f74d07f28
image: postgres:16-alpine@sha256:236d1ccc720e386c4e03facd46a107c34bc872858e6808c27d522032dfd5e273
networks:
default: null
profiles: ["rinoa-apps"]
@@ -5381,7 +5382,7 @@ services:
condition: service_healthy
required: true
restart: true
image: rommapp/romm:latest@sha256:b909e95d1aab88db9817be700183fda8d24094b3e7c28355ddbd066e2659fc8f
image: rommapp/romm:latest@sha256:056114e8fdab8d6b592d1330390e6203f08642d6ba17d1b3ad1681ce8fc8fee3
environment:
ROMM_DB_DRIVER: mariadb # mariadb | sqlite (default: sqlite)
ROMM_HOST: https://localhost:3000 # [Optional] your host ip or domain name (including http(s)://, subdomain and port if needed). Being used only for webRcade feed for now.
@@ -5643,7 +5644,7 @@ services:
container_name: searxng
environment:
SEARXNG_BASE_URL: https://search.${MY_TLD}
image: searxng/searxng:latest@sha256:0124d32d77e0c7360d0b85f5d91882d1837e6ceb243c82e190f5d7e9f1401334
image: searxng/searxng:latest@sha256:d477c0460cc06afa57541f24c7adcae3846303a125c3ae785b9893c9c2c2186f
labels:
homepage.group: Privacy/Security
homepage.name: SearxNG
@@ -5852,7 +5853,7 @@ services:
NGINX_ERROR_LOG_FILE: /swag/log/nginx/error.log
OTEL_RESOURCE_ATTRIBUTES: host.name=signoz-host,os.type=linux
LOW_CARDINAL_EXCEPTION_GROUPING: false
image: signoz/signoz-otel-collector:v0.129.12@sha256:84df7d9786ce12ee5983fc8460225371a204bca6320c85717801bf110b84ed65
image: signoz/signoz-otel-collector:v0.129.8@sha256:1beda534e337767597c3fdc83fcca8593a98b6db89bc34032e8fec7c58b7c900
ports:
# - "1777:1777" # pprof extension
- "4317:4317" # OTLP gRPC receiver
@@ -5865,7 +5866,7 @@ services:
- ${DOCKER_VOLUME_CONFIG}/swag/log/nginx/error.log:/swag/log/nginx/error.log:ro
signoz-schema-migrator-async:
<<: *signoz-db-depend
image: signoz/signoz-schema-migrator:v0.129.12@sha256:43044b0666c60ad9c0e8c1240d478f846d0c2b7fccfea142fa043f327c8be279
image: signoz/signoz-schema-migrator:v0.129.8@sha256:eb20e69025373e0d9749d3a88e34d74654ea4c03be694eebdb5b76a6cbeadfdc
container_name: signoz-schema-migrator-async
command:
- async
@@ -5875,7 +5876,7 @@ services:
restart: on-failure
signoz-schema-migrator-sync:
<<: *signoz-common
image: signoz/signoz-schema-migrator:v0.129.12@sha256:43044b0666c60ad9c0e8c1240d478f846d0c2b7fccfea142fa043f327c8be279
image: signoz/signoz-schema-migrator:v0.129.8@sha256:eb20e69025373e0d9749d3a88e34d74654ea4c03be694eebdb5b76a6cbeadfdc
container_name: signoz-schema-migrator-sync
command:
- sync
@@ -5959,7 +5960,7 @@ services:
interval: 10s
timeout: 5s
retries: 5
image: postgres:17-alpine@sha256:9a78577340f3d26384b6aebeb475c0d46d664fd4ffa68503b4be4e4462745f94
image: postgres:17-alpine@sha256:465e9a4c730a4ea32e4560f2f1115a8775443b879b7c78b9591420510fd3a981
profiles: ["rinoa-infra"]
restart: unless-stopped
volumes:
@@ -5973,7 +5974,7 @@ services:
TZ: ${TZ}
DOCKER_MODS: ghcr.io/gilbn/theme.park:sonarr
hostname: Rinoa
image: lscr.io/linuxserver/sonarr:latest@sha256:60e5edcac39172294ad22d55d1b08c2c0a9fe658cad2f2c4d742ae017d7874de
image: lscr.io/linuxserver/sonarr:latest@sha256:4b8a853b76337cd5de5f69961e23b7d0792ce7bf0a8be083dd7202ef670bfc34
labels:
homepage.group: Servarr Stack
homepage.name: Sonarr
@@ -6065,12 +6066,8 @@ services:
soularr:
container_name: soularr
depends_on:
lidarr:
condition: service_started
required: true
soulseek:
condition: service_started
required: true
- lidarr
- soulseek
environment:
PUID: ${PUID}
PGID: ${PGID}
@@ -6089,10 +6086,9 @@ services:
soularr-dashboard:
container_name: soularr-dashboard
depends_on:
soularr:
condition: service_started
- soularr
environment:
DOCKER_HOST: tcp:/${DOCKER_VOLUME_CONFIG}proxy:2375
DOCKER_HOST: tcp://dockerproxy:2375
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
@@ -6160,7 +6156,7 @@ services:
- ${DOCKER_VOLUME_STORAGE}/downloads/incomplete/slsk:/app/incomplete
speedtest-tracker:
container_name: speedtest-tracker
image: lscr.io/linuxserver/speedtest-tracker:latest@sha256:7a0af49937e7a6003e98582acaa6c647136e2776121e34749dd1f23d74a535e7
image: lscr.io/linuxserver/speedtest-tracker:latest@sha256:dbc0aaf9c49c9fab199125d2bd2a46eb8cef0133e86b3ec4bed72d23ff4f250d
environment:
PUID: ${PUID}
PGID: ${PGID}
@@ -6192,6 +6188,21 @@ services:
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/speedtest-tracker:/config
stable-diffusion-webui:
container_name: stable-diffusion-webui
image: ghcr.io/neggles/sd-webui-docker:latest@sha256:1795fe796e1dad0d8d3baa9ef7c38a255b69c0878b76869feecc617bfd015e53
environment:
CLI_ARGS: "--api --use-cpu all --precision full --no-half --skip-torch-cuda-test --ckpt /empty.pt --do-not-download-clip --disable-nan-check --disable-opt-split-attention"
PYTHONUNBUFFERED: "1"
TERM: "vt100"
SD_WEBUI_VARIANT: "default"
ports:
- 7860:7860
profiles: ["rinoa-apps"]
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/data:/data
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/output:/output
stirling-pdf:
container_name: stirling-pdf
environment:
@@ -6200,7 +6211,7 @@ services:
SECURITY_ENABLE_LOGIN: true
SYSTEM_SHOW_UPDATE: false
SYSTEM_SHOW_UPDATE_ONLY_ADMIN: true
image: docker.stirlingpdf.com/stirlingtools/stirling-pdf:latest@sha256:af9942975d39b953a008aaa1bb2bbb23330d725d8aeda835eb53de3715e42e36
image: docker.stirlingpdf.com/stirlingtools/stirling-pdf:latest@sha256:bfe2b8dd378c4f3d5fc1d2fc7649a357d0916b3a713022aa70ac3f08d6302cbc
labels:
homepage.name: Stirling-PDF
homepage.group: Professional Services
@@ -6245,14 +6256,14 @@ services:
VALIDATION: dns
CROWDSEC_API_KEY: ${CROWDSEC_SWAG_API_KEY}
CROWDSEC_LAPI_URL: http://crowdsec:8080
DOCKER_MODS: linuxserver/mods:universal-docker|linuxserver/mods:swag-auto-proxy|linuxserver/mods:swag-dashboard|linuxserver/mods:swag-maxmind|linuxserver/mods:universal-stdout-logs|linuxserver/mods:universal-package-install|ghcr.io/linuxserver/mods:swag-crowdsec #|ghcr.io/trezone/swag-auto-uptime-kuma:d84284c8fbec305e94a6c2f6b825e8e3430d9569 #linuxserver/mods:swag-auto-uptime-kuma
DOCKER_MODS: linuxserver/mods:universal-docker|linuxserver/mods:swag-auto-proxy|linuxserver/mods:swag-dashboard|linuxserver/mods:swag-maxmind|linuxserver/mods:universal-stdout-logs|linuxserver/mods:universal-package-install|ghcr.io/linuxserver/mods:swag-crowdsec|ghcr.io/trezone/swag-auto-uptime-kuma:d84284c8fbec305e94a6c2f6b825e8e3430d9569 #linuxserver/mods:swag-auto-uptime-kuma
INSTALL_PACKAGES: nginx-mod-http-js
PROPAGATION: 30
UPTIME_KUMA_PASSWORD: ${UPTIME_KUMA_PASSWORD}
UPTIME_KUMA_URL: http://uptimekuma:3001
UPTIME_KUMA_USERNAME: ${UPTIME_KUMA_USERNAME}
hostname: Rinoa
image: lscr.io/linuxserver/swag:latest@sha256:c618d7be86c61924355299048d169412c2ebc4fb4489b9d2e3064f9574acd4cb
image: lscr.io/linuxserver/swag:latest@sha256:19c0853e19c0446a45e84773ee4b2ff94ed643fc30d7e49070145601e378a0b3
labels:
swag: enable
swag_proto: http
@@ -6308,7 +6319,7 @@ services:
SECRET_KEY: ${TANDOOR_SECRET_KEY}
TZ: ${TZ}
UID: 1000
image: vabene1111/recipes@sha256:5cd01ba0473a48878db3ed9b2c6f2c5db12b68649e169ce9cfa43f052fb0aa95
image: vabene1111/recipes@sha256:af6bd76e703d644748a93d581da05c25159d742b94b2da9eddadaaec93555858
labels:
homepage.group: Lifestyle
homepage.name: Tandoor Recipes
@@ -6354,7 +6365,7 @@ services:
POSTGRES_USER: tandoor
expose:
- 5432
image: postgres:16-alpine@sha256:79c06d285ed9186efbbc45c73413b3c3510c3c94ffede2f25d1e523f74d07f28
image: postgres:16-alpine@sha256:236d1ccc720e386c4e03facd46a107c34bc872858e6808c27d522032dfd5e273
networks:
default: null
profiles: ["rinoa-apps"]
@@ -6364,58 +6375,6 @@ services:
target: /var/lib/postgresql/data
type: volume
volume: {}
tdarr:
container_name: tdarr
environment:
TZ: ${TZ}
PUID: ${PUID}
PGID: ${PGID}
UMASK_SET: 002
serverIP: 0.0.0.0
serverPort: 8266
webUIPort: 8265
internalNode: true
inContainer: true
ffmpegVersion: 7
nodeName: tdarr-rinoa
auth: false
authSecretKey: ${TDARR_AUTH_SECRET_KEY}
openBrowser: true
maxLogSizeMB: 10
cronPluginUpdate:
NVIDIA_DRIVER_CAPABILITIES: all
NVIDIA_VISIBLE_DEVICES: all
image: ghcr.io/haveagitgat/tdarr:2.58.02@sha256:20a5656c4af4854e1877046294f77113f949d27e35940a9a65f231423d063207
labels:
homepage.group: Servarr Stack
homepage.name: Tdarr
homepage.href: https://tdarr.${MY_TLD}
homepage.icon: tdarr.png
homepage.description: Distributed transcode automation
homepage.widget.type: tdarr
homepage.widget.url: http://tdarr:8266
swag: enable
swag_proto: http
swag_port: 8265
swag_address: tdarr
swag_url: tdarr.${MY_TLD}
swag.uptime-kuma.enabled: true
swag.uptime-kuma.monitor.parent: Rinoa
swag.uptime-kuma.name: Tdarr
swag.uptime-kuma.monitor.url: https://tdarr.${MY_TLD}
swag.uptime-kuma.monitor.interval: 300
swag.uptime-kuma.monitor.retryInterval: 60
swag.uptime-kuma.monitor.maxretries: 5
ports:
- 8265:8265
- 8266:8266
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_CONFIG}/tdarr/server:/app/server
- ${DOCKER_VOLUME_CONFIG}/tdarr/configs:/app/configs
- ${DOCKER_VOLUME_CONFIG}/tdarr/logs:/app/logs
- ${DOCKER_VOLUME_CONFIG}/tdarr/transcode_cache:/temp
- ${DOCKER_VOLUME_STORAGE}/:/media
unmanic:
container_name: unmanic
environment:
@@ -6423,7 +6382,7 @@ services:
PUID: ${PUID}
PGID: ${PGID}
LOGS_TO_STDOUT: /config/.unmanic/logs/unmanic.log
image: josh5/unmanic:latest@sha256:bb6af876ff5ba04c368c27490ce51631b25f1aedd52734f772afcabf2f30c1df
image: josh5/unmanic:latest@sha256:998f2dd5cbf6379a85e3427d0339dcfd3500f93e7a2ad089b968803d3fe05fbe
labels:
homepage.group: Media Library
homepage.name: Unmanic
@@ -6475,7 +6434,7 @@ services:
TZ: ${TZ}
UPTIME_KUMA_USERNAME: ${UPTIME_KUMA_USERNAME}
UPTIME_KUMA_PASSWORD: ${UPTIME_KUMA_PASSWORD}
DOCKER_HOST: tcp:/${DOCKER_VOLUME_CONFIG}proxy:2375
DOCKER_HOST: tcp://dockerproxy:2375
hostname: Rinoa
image: louislam/uptime-kuma:latest@sha256:431fee3be822b04861cf0e35daf4beef6b7cb37391c5f26c3ad6e12ce280fe18
labels:
@@ -6522,7 +6481,7 @@ services:
environment:
AWS_ACCESS_KEY_ID: ${VAULT_HASHICORP_AWS_ACCESS_KEY_ID}
AWS_SECRET_ACCESS_KEY: ${VAULT_HASHICORP_AWS_SECRET_ACCESS_KEY}
image: hashicorp/vault:latest@sha256:f4e2687b72858a9e2160c344c9fa1ef74c07f21a89a8c00534ab64d3f187b927
image: hashicorp/vault:latest@sha256:62dd55c9ccbdc0af0a9269e87481a64650258907434d5ddb5e795e2eb2ac5780
labels:
homepage.group: Code/DevOps
homepage.name: HashiCorp Vault
@@ -6608,7 +6567,7 @@ services:
restart: unless-stopped
whodb:
container_name: whodb
image: clidey/whodb@sha256:a87465ded0f27548e09fb666a8efaba8ceb3aa4200ed1f53b0ba786503620904
image: clidey/whodb@sha256:0f636932164fbe211d2571a8523b3fce520cf81e31caf614c6da72f4c58e5f8d
environment:
WHODB_CLICKHOUSE_1: '{
"host": "signoz-clickhouse"
@@ -6744,7 +6703,7 @@ services:
"host": "plant-it-valkey"
}'
WHODB_SQLITE3_1: '{"database":"kuma.db"}'
WHODB_OLLAMA_HOST: 192.168.1.249
WHODB_OLLAMA_HOST: ollama
WHODB_OLLAMA_PORT: 11434
WHODB_ANTHROPIC_API_KEY: ${LIBRECHAT_ANTHROPIC_API_KEY}
WHODB_OPENAI_API_KEY: ${LIBRECHAT_OPENAI_API_KEY}
@@ -6783,7 +6742,7 @@ services:
PGID: ${PGID}
DISABLE_BUILTIN_AUTH: true
TZ: ${TZ}
image: ghcr.io/wizarrrr/wizarr@sha256:5809c5da07883e3e572b279e41998a6ae93a17f978da899cfe803bc8d7b459fe
image: ghcr.io/wizarrrr/wizarr@sha256:dbf51675f35cd39db92d0a6522b461eec5e28f65357d804c60daca60ba1f3dd8
labels:
homepage.group: Servarr Stack
homepage.name: Wizarr
@@ -6964,6 +6923,8 @@ volumes:
name: nocodb_pg_data
nocodb_valkey_data:
name: nocodb_valkey_data
ollama:
name: ollama
open-webui-data:
name: open-webui-data
open-webui-valkey-data: