Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85a0307e55 | |||
| 397f09e0a4 | |||
| f703e1e1e0 | |||
| 5f602e6075 | |||
| c94ddaf4f0 | |||
| 05a9f7fd35 | |||
| 7e3a038a64 | |||
| f9a60cb3d7 | |||
| a983cec48b | |||
| a712248cb0 | |||
| 384f9254b4 | |||
| e451cf2825 | |||
| 9c7b5e04fc | |||
| e1025cf7ed | |||
| b5576bbd3e | |||
| 8fd689517c | |||
| a5d27466fc | |||
| ae10b7a19e | |||
| 3f83290ab0 | |||
| 2c9cd867b0 | |||
| 8146d51f37 | |||
| 35b35cb840 | |||
| 5a5becea56 | |||
| 1641e877ad | |||
| 432e14e5dd | |||
| 617dea13b0 | |||
| 11353334b5 | |||
| 700f10fc92 | |||
| cc0dcfdd3c | |||
| 57b1293156 | |||
| 210375d17b |
@@ -33,6 +33,7 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
tea login add --name gitea-rinoa --url "${{ secrets.RINOA_GITEA_URL }}" --user gitea-sonarqube-bot --password "${{ secrets.BOT_GITEA_PASSWORD }}" --token ${{ secrets.BOT_GITEA_TOKEN }}
|
tea login add --name gitea-rinoa --url "${{ secrets.RINOA_GITEA_URL }}" --user gitea-sonarqube-bot --password "${{ secrets.BOT_GITEA_PASSWORD }}" --token ${{ secrets.BOT_GITEA_TOKEN }}
|
||||||
|
tea pr list --repo ${{ github.repository }} --state all
|
||||||
pr_exists=$(tea pr list --repo ${{ github.repository }} --state open --fields index,title,head | egrep ${{ github.ref_name }} | tail -1 | wc -l)
|
pr_exists=$(tea pr list --repo ${{ github.repository }} --state open --fields index,title,head | egrep ${{ github.ref_name }} | tail -1 | wc -l)
|
||||||
echo ${pr_exists}
|
echo ${pr_exists}
|
||||||
echo "exists=$pr_exists" >> $GITHUB_OUTPUT
|
echo "exists=$pr_exists" >> $GITHUB_OUTPUT
|
||||||
@@ -184,28 +185,28 @@ jobs:
|
|||||||
name: Update README & Generate List of Modified Services
|
name: Update README & Generate List of Modified Services
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [cloudflare-dns-setup]
|
needs: [cloudflare-dns-setup]
|
||||||
outputs:
|
# outputs:
|
||||||
pr-pushed: ${{ steps.commit-readme.outputs.pushed }}
|
# pr-pushed: ${{ steps.commit-readme.outputs.pushed }}
|
||||||
modified_services: ${{ steps.compare-services.outputs.modified_services }}
|
# modified_services: ${{ steps.compare-services.outputs.modified_services }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Install yq
|
- name: Install yq
|
||||||
uses: dcarbone/install-yq-action@v1
|
uses: dcarbone/install-yq-action@v1
|
||||||
- name: Fetch main branch for comparison
|
# - name: Fetch main branch for comparison
|
||||||
run: |
|
# run: |
|
||||||
git fetch origin main:main
|
# git fetch origin main:main
|
||||||
- name: Compare services using yq
|
# - name: Compare services using yq
|
||||||
continue-on-error: true
|
# continue-on-error: true
|
||||||
id: compare-services
|
# id: compare-services
|
||||||
run: |
|
# run: |
|
||||||
current_services=$(yq '.services | to_entries' docker-compose.yml)
|
# current_services=$(yq '.services | to_entries' docker-compose.yml)
|
||||||
git show main:docker-compose.yml > main_compose.yml
|
# git show main:docker-compose.yml > main_compose.yml
|
||||||
main_services=$(yq '.services | to_entries' main_compose.yml)
|
# main_services=$(yq '.services | to_entries' main_compose.yml)
|
||||||
modified_services_file=$(comm -13 <(echo "$main_services") <(echo "$current_services") > changes_compose.yml)
|
# modified_services_file=$(comm -13 <(echo "$main_services") <(echo "$current_services") > changes_compose.yml)
|
||||||
modified_services=${egrep '^ [a-z]' changes.yml | sed -e 's|^ ||g' -e 's|:||g' | sed ':a;N;$!ba;s/\n/ /g'}
|
# modified_services=${egrep '^ [a-z]' changes.yml | sed -e 's|^ ||g' -e 's|:||g' | sed ':a;N;$!ba;s/\n/ /g'}
|
||||||
echo "Modified services: $modified_services"
|
# echo "Modified services: $modified_services"
|
||||||
echo "modified_services=$modified_services" >> $GITHUB_OUTPUT
|
# echo "modified_services=$modified_services" >> $GITHUB_OUTPUT
|
||||||
- name: Generate service list
|
- name: Generate service list
|
||||||
run: |
|
run: |
|
||||||
yq '.services | to_entries | map({"service": .key, "image": .value.image})' docker-compose.yml > services.yml
|
yq '.services | to_entries | map({"service": .key, "image": .value.image})' docker-compose.yml > services.yml
|
||||||
@@ -227,7 +228,7 @@ jobs:
|
|||||||
add: "README.md"
|
add: "README.md"
|
||||||
pr-merge:
|
pr-merge:
|
||||||
name: PR Merge
|
name: PR Merge
|
||||||
needs: [regenerate-readme]
|
needs: [regenerate-readme-modified-services]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@@ -307,7 +308,7 @@ jobs:
|
|||||||
uses: keatonLiu/docker-compose-remote-action@v1.2
|
uses: keatonLiu/docker-compose-remote-action@v1.2
|
||||||
with:
|
with:
|
||||||
docker_compose_file: docker-compose.yml
|
docker_compose_file: docker-compose.yml
|
||||||
docker_args: -d --remove-orphans --pull missing --parallel -1 ${{ steps.regenerate-readme-modified-services.outputs.modified_services }}
|
docker_args: -d --remove-orphans --pull missing --parallel -1
|
||||||
ssh_user: gitea-deploy
|
ssh_user: gitea-deploy
|
||||||
ssh_host: 192.168.1.254
|
ssh_host: 192.168.1.254
|
||||||
ssh_host_public_key: ${{ secrets.RINOA_GITEA_PUBLIC_SSH_KEY }}
|
ssh_host_public_key: ${{ secrets.RINOA_GITEA_PUBLIC_SSH_KEY }}
|
||||||
|
|||||||
@@ -6,11 +6,12 @@
|
|||||||
| --- | --- |
|
| --- | --- |
|
||||||
| actual_server | docker.io/actualbudget/actual-server:latest |
|
| actual_server | docker.io/actualbudget/actual-server:latest |
|
||||||
| adguard | adguard/adguardhome:latest |
|
| adguard | adguard/adguardhome:latest |
|
||||||
| apprise | lscr.io/linuxserver/apprise-api: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 |
|
||||||
| bazarr | lscr.io/linuxserver/bazarr:latest |
|
| bazarr | lscr.io/linuxserver/bazarr:latest |
|
||||||
|
| beszel | henrygd/beszel:latest |
|
||||||
|
| beszel-agent | henrygd/beszel-agent:latest |
|
||||||
| bitmagnet | ghcr.io/bitmagnet-io/bitmagnet:latest |
|
| bitmagnet | ghcr.io/bitmagnet-io/bitmagnet:latest |
|
||||||
| bitmagnet-pg-db | postgres:17-alpine |
|
| bitmagnet-pg-db | postgres:17-alpine |
|
||||||
| bitwarden | vaultwarden/server:latest |
|
| bitwarden | vaultwarden/server:latest |
|
||||||
@@ -22,8 +23,6 @@
|
|||||||
| crowdsec | crowdsecurity/crowdsec:latest |
|
| crowdsec | crowdsecurity/crowdsec:latest |
|
||||||
| crowdsec-dashboard | metabase/metabase |
|
| crowdsec-dashboard | metabase/metabase |
|
||||||
| czkawka | jlesage/czkawka |
|
| czkawka | jlesage/czkawka |
|
||||||
| dagu-scheduler | ghcr.io/dagu-org/dagu:latest |
|
|
||||||
| dagu-server | ghcr.io/dagu-org/dagu:latest |
|
|
||||||
| 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 |
|
||||||
@@ -58,8 +57,8 @@
|
|||||||
| influxdb2 | influxdb:2-alpine |
|
| influxdb2 | influxdb:2-alpine |
|
||||||
| invidious | quay.io/invidious/invidious:latest |
|
| invidious | quay.io/invidious/invidious:latest |
|
||||||
| invidious-db | docker.io/library/postgres:14 |
|
| invidious-db | docker.io/library/postgres:14 |
|
||||||
| invoice_ninja | invoiceninja/invoiceninja:5 |
|
| invoice-ninja | invoiceninja/invoiceninja-debian:5 |
|
||||||
| invoice_ninja_proxy | nginx |
|
| invoice-ninja_proxy | nginx |
|
||||||
| it-tools | ghcr.io/corentinth/it-tools:latest |
|
| it-tools | ghcr.io/corentinth/it-tools:latest |
|
||||||
| jellyfin | jellyfin/jellyfin |
|
| jellyfin | jellyfin/jellyfin |
|
||||||
| jitsi-etherpad | etherpad/etherpad:1.8.6 |
|
| jitsi-etherpad | etherpad/etherpad:1.8.6 |
|
||||||
@@ -74,8 +73,6 @@
|
|||||||
| lidarr | lscr.io/linuxserver/lidarr:latest |
|
| lidarr | lscr.io/linuxserver/lidarr:latest |
|
||||||
| lidify | thewicklowwolf/lidify:latest |
|
| lidify | thewicklowwolf/lidify:latest |
|
||||||
| lldap | lldap/lldap:stable |
|
| lldap | lldap/lldap:stable |
|
||||||
| lobe-chat | lobehub/lobe-chat-database |
|
|
||||||
| lobe-chat-pg-db | pgvector/pgvector:pg16 |
|
|
||||||
| maloja | krateng/maloja:latest |
|
| maloja | krateng/maloja:latest |
|
||||||
| mariadb | linuxserver/mariadb |
|
| mariadb | linuxserver/mariadb |
|
||||||
| mastodon | lscr.io/linuxserver/mastodon:latest |
|
| mastodon | lscr.io/linuxserver/mastodon:latest |
|
||||||
@@ -90,11 +87,10 @@
|
|||||||
| netbird-relay | netbirdio/relay:latest |
|
| netbird-relay | netbirdio/relay:latest |
|
||||||
| netbird-management | netbirdio/management:latest |
|
| netbird-management | netbirdio/management:latest |
|
||||||
| netbird-coturn | coturn/coturn:latest |
|
| netbird-coturn | coturn/coturn:latest |
|
||||||
| netbox | lscr.io/linuxserver/netbox:latest |
|
|
||||||
| netbox-db | postgres:17-alpine |
|
|
||||||
| nextcloud | nextcloud/all-in-one:latest |
|
| nextcloud | nextcloud/all-in-one:latest |
|
||||||
| ollama | ollama/ollama |
|
| ollama | ollama/ollama |
|
||||||
| ombi | lscr.io/linuxserver/ombi:latest |
|
| ombi | lscr.io/linuxserver/ombi:latest |
|
||||||
|
| open-webui | ghcr.io/open-webui/open-webui:main |
|
||||||
| paperless-ngx | ghcr.io/paperless-ngx/paperless-ngx:latest |
|
| paperless-ngx | ghcr.io/paperless-ngx/paperless-ngx:latest |
|
||||||
| pgbackweb | eduardolat/pgbackweb:latest |
|
| pgbackweb | eduardolat/pgbackweb:latest |
|
||||||
| pgbackweb-db | postgres:16-alpine |
|
| pgbackweb-db | postgres:16-alpine |
|
||||||
@@ -103,6 +99,7 @@
|
|||||||
| plausible_db | postgres:16-alpine |
|
| plausible_db | postgres:16-alpine |
|
||||||
| plausible_events_db | clickhouse/clickhouse-server:24.3.3.102-alpine |
|
| plausible_events_db | clickhouse/clickhouse-server:24.3.3.102-alpine |
|
||||||
| portainer | portainer/portainer-ce:alpine-sts |
|
| portainer | portainer/portainer-ce:alpine-sts |
|
||||||
|
| portall | need4swede/portall:latest |
|
||||||
| postal-smtp | ghcr.io/postalserver/postal:latest |
|
| postal-smtp | ghcr.io/postalserver/postal:latest |
|
||||||
| postal-web | ghcr.io/postalserver/postal:latest |
|
| postal-web | ghcr.io/postalserver/postal:latest |
|
||||||
| postal-worker | ghcr.io/postalserver/postal:latest |
|
| postal-worker | ghcr.io/postalserver/postal:latest |
|
||||||
@@ -120,10 +117,6 @@
|
|||||||
| scraperr-api | jpyles0524/scraperr_api:latest |
|
| scraperr-api | jpyles0524/scraperr_api:latest |
|
||||||
| scrutiny | ghcr.io/analogj/scrutiny:master-omnibus |
|
| scrutiny | ghcr.io/analogj/scrutiny:master-omnibus |
|
||||||
| searxng | searxng/searxng:latest |
|
| searxng | searxng/searxng:latest |
|
||||||
| slurpit-portal | slurpit/portal:latest |
|
|
||||||
| slurpit-scanner | slurpit/scanner:latest |
|
|
||||||
| slurpit-scraper | slurpit/scraper:latest |
|
|
||||||
| slurpit-warehouse | slurpit/warehouse:latest |
|
|
||||||
| sonarqube | mc1arke/sonarqube-with-community-branch-plugin:lts |
|
| sonarqube | mc1arke/sonarqube-with-community-branch-plugin:lts |
|
||||||
| sonarqube-pg-db | postgres:17-alpine |
|
| sonarqube-pg-db | postgres:17-alpine |
|
||||||
| sonarr | lscr.io/linuxserver/sonarr:latest |
|
| sonarr | lscr.io/linuxserver/sonarr:latest |
|
||||||
@@ -144,10 +137,6 @@
|
|||||||
| wallabag | wallabag/wallabag |
|
| wallabag | wallabag/wallabag |
|
||||||
| wallos | bellamy/wallos:latest |
|
| wallos | bellamy/wallos:latest |
|
||||||
| watchtower | ghcr.io/containrrr/watchtower:latest |
|
| watchtower | ghcr.io/containrrr/watchtower:latest |
|
||||||
| wazuh-agent | kennyopennix/wazuh-agent:latest |
|
|
||||||
| wazuh-dashboard | wazuh/wazuh-dashboard: |
|
|
||||||
| wazuh-indexer | wazuh/wazuh-indexer: |
|
|
||||||
| wazuh-manager | wazuh/wazuh-manager: |
|
|
||||||
| web-check | lissy93/web-check |
|
| web-check | lissy93/web-check |
|
||||||
| your_spotify | lscr.io/linuxserver/your_spotify:latest |
|
| your_spotify | lscr.io/linuxserver/your_spotify:latest |
|
||||||
| youtubedl | nbr23/youtube-dl-server:latest |
|
| youtubedl | nbr23/youtube-dl-server:latest |
|
||||||
|
|||||||
@@ -27,22 +27,22 @@ layout:
|
|||||||
# fiveColumns: true
|
# fiveColumns: true
|
||||||
Infrastructure/App Performance Monitoring:
|
Infrastructure/App Performance Monitoring:
|
||||||
style: row
|
style: row
|
||||||
columns: 4
|
columns: 3
|
||||||
|
Code/DevOps:
|
||||||
|
style: row
|
||||||
|
columns: 3
|
||||||
|
Social:
|
||||||
|
style: row
|
||||||
|
columns: 3
|
||||||
|
Lifestyle:
|
||||||
|
style: row
|
||||||
|
columns: 3
|
||||||
Automation:
|
Automation:
|
||||||
style: columns
|
style: columns
|
||||||
row: 2
|
row: 2
|
||||||
Code/DevOps:
|
|
||||||
style: columms
|
|
||||||
row: 2
|
|
||||||
Privacy/Security:
|
Privacy/Security:
|
||||||
style: columns
|
style: columns
|
||||||
row: 5
|
row: 5
|
||||||
Social:
|
|
||||||
style: columns
|
|
||||||
row: 4
|
|
||||||
Lifestyle:
|
|
||||||
style: row
|
|
||||||
columns: 4
|
|
||||||
Personal Services:
|
Personal Services:
|
||||||
style: row
|
style: row
|
||||||
columns: 4
|
columns: 4
|
||||||
@@ -57,4 +57,4 @@ layout:
|
|||||||
columns: 3
|
columns: 3
|
||||||
Media Library:
|
Media Library:
|
||||||
style: row
|
style: row
|
||||||
columns: 4
|
columns: 3
|
||||||
|
|||||||
+159
-526
@@ -130,45 +130,6 @@ services:
|
|||||||
type: bind
|
type: bind
|
||||||
bind:
|
bind:
|
||||||
create_host_path: true
|
create_host_path: true
|
||||||
apprise:
|
|
||||||
container_name: apprise
|
|
||||||
environment:
|
|
||||||
PGID: 1000
|
|
||||||
PUID: 1000
|
|
||||||
TZ: America/New_York
|
|
||||||
hostname: Rinoa
|
|
||||||
image: lscr.io/linuxserver/apprise-api:latest
|
|
||||||
labels:
|
|
||||||
homepage.group: Infrastructure/App Performance Monitoring
|
|
||||||
homepage.name: Apprise
|
|
||||||
homepage.icon: apprise.png
|
|
||||||
homepage.href: http://192.168.1.254:8000
|
|
||||||
homepage.description: Cemtralized, multi-channel notification API
|
|
||||||
networks:
|
|
||||||
default: null
|
|
||||||
ports:
|
|
||||||
- mode: ingress
|
|
||||||
protocol: tcp
|
|
||||||
published: "8000"
|
|
||||||
target: 8000
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
|
||||||
- bind:
|
|
||||||
create_host_path: true
|
|
||||||
read_only: true
|
|
||||||
source: /etc/localtime
|
|
||||||
target: /etc/localtime
|
|
||||||
type: bind
|
|
||||||
- bind:
|
|
||||||
create_host_path: true
|
|
||||||
source: ${DOCKER_VOLUME_CONFIG}/apprise
|
|
||||||
target: /config
|
|
||||||
type: bind
|
|
||||||
- bind:
|
|
||||||
create_host_path: true
|
|
||||||
source: /rinoa-storage
|
|
||||||
target: /storage
|
|
||||||
type: bind
|
|
||||||
audiobookshelf:
|
audiobookshelf:
|
||||||
container_name: audiobookshelf
|
container_name: audiobookshelf
|
||||||
environment:
|
environment:
|
||||||
@@ -335,6 +296,55 @@ services:
|
|||||||
source: /rinoa-storage
|
source: /rinoa-storage
|
||||||
target: /storage
|
target: /storage
|
||||||
type: bind
|
type: bind
|
||||||
|
beszel:
|
||||||
|
container_name: beszel
|
||||||
|
extra_hosts:
|
||||||
|
- host.docker.internal:host-gateway
|
||||||
|
image: henrygd/beszel:latest
|
||||||
|
labels:
|
||||||
|
homepage.group: Infrastructure/App Performance Monitoring
|
||||||
|
homepage.name: Beszel
|
||||||
|
homepage.href: https://beszel.${MY_TLD}
|
||||||
|
homepage.icon: beszel.svg
|
||||||
|
homepage.description: Lightweight server monitoring hub
|
||||||
|
homepage.widget.type: beszel
|
||||||
|
homepage.widget.url: http://beszel:8090
|
||||||
|
homepage.widget.username: ${SWAG_ENVIRONMENT_EMAIL}
|
||||||
|
homepage.widget.password: ${BESZEL_ADMIN_PASSWORD}
|
||||||
|
homepage.widget.systemId: Rinoa
|
||||||
|
swag: enable
|
||||||
|
swag_proto: http
|
||||||
|
swag_port: 8090
|
||||||
|
swag_url: beszel.${MY_TLD}
|
||||||
|
swag.uptime-kuma.enabled: true
|
||||||
|
swag.uptime-kuma.monitor.url: https://beszel.${MY_TLD}
|
||||||
|
ports:
|
||||||
|
- 22220:8090
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/beszel:/beszel_data
|
||||||
|
beszel-agent:
|
||||||
|
container_name: beszel-agent
|
||||||
|
depends_on:
|
||||||
|
- beszel
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
|
PORT: 45876
|
||||||
|
# Do not remove quotes around the key
|
||||||
|
KEY: '${BESZEL_RINOA_AGENT_KEY}'
|
||||||
|
expose:
|
||||||
|
- 45876
|
||||||
|
image: henrygd/beszel-agent:latest
|
||||||
|
network_mode: host
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- /dev/sda:/extra-filesystems/sda:ro
|
||||||
|
- /dev/sdb:/extra-filesystems/sdb:ro
|
||||||
|
- /dev/sdc:/extra-filesystems/sdc:ro
|
||||||
|
- /dev/sdd:/extra-filesystems/sdd:ro
|
||||||
|
- /dev/sde:/extra-filesystems/sde:ro
|
||||||
|
- /dev/sdf:/extra-filesystems/sdf:ro
|
||||||
|
- /dev/nvme0n1:/extra-filesystems/nvme0n1:ro
|
||||||
bitmagnet:
|
bitmagnet:
|
||||||
command:
|
command:
|
||||||
- worker
|
- worker
|
||||||
@@ -356,8 +366,6 @@ services:
|
|||||||
POSTGRES_HOST: bitmagnet-pg-db
|
POSTGRES_HOST: bitmagnet-pg-db
|
||||||
POSTGRES_PASSWORD: ${BITMAGNET_POSTGRESQL_PASSWORD}
|
POSTGRES_PASSWORD: ${BITMAGNET_POSTGRESQL_PASSWORD}
|
||||||
POSTGRES_USER: bitmagnet
|
POSTGRES_USER: bitmagnet
|
||||||
extra_hosts:
|
|
||||||
- bitmagnet-pg-db:192.168.55.8
|
|
||||||
image: ghcr.io/bitmagnet-io/bitmagnet:latest
|
image: ghcr.io/bitmagnet-io/bitmagnet:latest
|
||||||
labels:
|
labels:
|
||||||
homepage.group: Downloaders
|
homepage.group: Downloaders
|
||||||
@@ -374,8 +382,6 @@ services:
|
|||||||
swag_auth_bypass: /v1
|
swag_auth_bypass: /v1
|
||||||
swag_port: 3333
|
swag_port: 3333
|
||||||
swag_url: btmag.${MY_TLD}
|
swag_url: btmag.${MY_TLD}
|
||||||
swag.uptime-kuma.enabled: true
|
|
||||||
swag.uptime-kuma.monitor.url: https://btmag.${MY_TLD}
|
|
||||||
network_mode: service:gluetun
|
network_mode: service:gluetun
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
@@ -697,7 +703,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- source: crowdsec-db
|
- source: crowdsec-db
|
||||||
target: /metabase-data
|
target: /data/
|
||||||
type: volume
|
type: volume
|
||||||
volume: {}
|
volume: {}
|
||||||
czkawka:
|
czkawka:
|
||||||
@@ -797,14 +803,6 @@ services:
|
|||||||
PORT_joplin-db: 5432
|
PORT_joplin-db: 5432
|
||||||
ENGINE_joplin-db: postgres@dbgate-plugin-postgres
|
ENGINE_joplin-db: postgres@dbgate-plugin-postgres
|
||||||
|
|
||||||
LABEL_lobe-chat-pg-db: lobe-chat-pg-db
|
|
||||||
SERVER_lobe-chat-pg-db: lobe-chat-pg-db
|
|
||||||
USER_lobe-chat-pg-db: lobe
|
|
||||||
PASSWORD_lobe-chat-pg-db: ${GITEA_PG_DB_PASSWORD}
|
|
||||||
DATABASE_lobe-chat-pg-db: lobe
|
|
||||||
PORT_lobe-chat-pg-db: 5432
|
|
||||||
ENGINE_lobe-chat-pg-db: postgres@dbgate-plugin-postgres
|
|
||||||
|
|
||||||
LABEL_mastodon-pg-db: mastodon-pg-db
|
LABEL_mastodon-pg-db: mastodon-pg-db
|
||||||
SERVER_mastodon-pg-db: mastodon-pg-db
|
SERVER_mastodon-pg-db: mastodon-pg-db
|
||||||
USER_mastodon-pg-db: mastodon
|
USER_mastodon-pg-db: mastodon
|
||||||
@@ -814,17 +812,9 @@ services:
|
|||||||
ENGINE_mastodon-pg-db: postgres@dbgate-plugin-postgres
|
ENGINE_mastodon-pg-db: postgres@dbgate-plugin-postgres
|
||||||
|
|
||||||
LABEL_mongodb: mongodb
|
LABEL_mongodb: mongodb
|
||||||
URI_mongodb: mongodb://root:${MONGO_INITDB_ROOT_PASSWORD}@mongodb:27017
|
URI_mongodb: mongodb://root:${MONGO_INITDB_ROOT_PASSWORD}@mongodb:27017/admin?replicaSet=rinoa
|
||||||
ENGINE_mongodb: mongo@dbgate-plugin-mongo-v2
|
ENGINE_mongodb: mongo@dbgate-plugin-mongo-v2
|
||||||
|
|
||||||
LABEL_netbox-db: netbox-db
|
|
||||||
SERVER_netbox-db: netbox-db
|
|
||||||
USER_netbox-db: netbox
|
|
||||||
PASSWORD_netbox-db: ${NETBOX_PG_DB_PASSWORD}
|
|
||||||
PORT_netbox-db: 5432
|
|
||||||
DATABASE_netbox-db: netbox
|
|
||||||
ENGINE_netbox-db: postgres@dbgate-plugin-postgres
|
|
||||||
|
|
||||||
LABEL_pgbackweb-db: pgbackweb-db
|
LABEL_pgbackweb-db: pgbackweb-db
|
||||||
SERVER_pgbackweb-db: pgbackweb-db
|
SERVER_pgbackweb-db: pgbackweb-db
|
||||||
USER_pgbackweb-db: pgbackweb
|
USER_pgbackweb-db: pgbackweb
|
||||||
@@ -853,13 +843,6 @@ services:
|
|||||||
PORT_sonarqube-pg-db: 5432
|
PORT_sonarqube-pg-db: 5432
|
||||||
ENGINE_sonarqube-pg-db: postgres@dbgate-plugin-postgres
|
ENGINE_sonarqube-pg-db: postgres@dbgate-plugin-postgres
|
||||||
|
|
||||||
LABEL_synapse-db: synapse-db
|
|
||||||
SERVER_synapse-db: synapse-db
|
|
||||||
USER_synapse-db: synapse
|
|
||||||
PASSWORD_synapse-db: ${SYNAPSE_POSTGRES_PASSWORD}
|
|
||||||
PORT_synapse-db: 5432
|
|
||||||
ENGINE_synapse-db: postgres@dbgate-plugin-postgres
|
|
||||||
|
|
||||||
LABEL_tandoor-pg: tandoor-pg
|
LABEL_tandoor-pg: tandoor-pg
|
||||||
SERVER_tandoor-pg: tandoor-pg
|
SERVER_tandoor-pg: tandoor-pg
|
||||||
USER_tandoor-pg: tandoor
|
USER_tandoor-pg: tandoor
|
||||||
@@ -1884,6 +1867,7 @@ services:
|
|||||||
DB_PORT: 5432
|
DB_PORT: 5432
|
||||||
DB_USERNAME: immich
|
DB_USERNAME: immich
|
||||||
DB_PASSWORD: ${IMMICH_DB_PASSWORD}
|
DB_PASSWORD: ${IMMICH_DB_PASSWORD}
|
||||||
|
IMMICH_LOG_LEVEL: error
|
||||||
IMMICH_TELEMETRY_INCLUDE: all
|
IMMICH_TELEMETRY_INCLUDE: all
|
||||||
healthcheck:
|
healthcheck:
|
||||||
disable: false
|
disable: false
|
||||||
@@ -1964,7 +1948,7 @@ services:
|
|||||||
container_name: immich-public-proxy
|
container_name: immich-public-proxy
|
||||||
depends_on:
|
depends_on:
|
||||||
immich-server:
|
immich-server:
|
||||||
condition: service_started
|
condition: service_healthy
|
||||||
required: true
|
required: true
|
||||||
environment:
|
environment:
|
||||||
IMMICH_URL: http://immich-server:2283
|
IMMICH_URL: http://immich-server:2283
|
||||||
@@ -2000,7 +1984,7 @@ services:
|
|||||||
image: ghcr.io/varun-raj/immich-power-tools:latest
|
image: ghcr.io/varun-raj/immich-power-tools:latest
|
||||||
labels:
|
labels:
|
||||||
homepage.group: Lifestyle
|
homepage.group: Lifestyle
|
||||||
homepage.name: Immich Public Proxy
|
homepage.name: Immich Power Tools
|
||||||
homepage.href: https://pics.${MY_TLD}/tools
|
homepage.href: https://pics.${MY_TLD}/tools
|
||||||
homepage.icon: sh-immich-power-tools.png
|
homepage.icon: sh-immich-power-tools.png
|
||||||
homepage.description: Tools for Immich
|
homepage.description: Tools for Immich
|
||||||
@@ -3388,6 +3372,30 @@ services:
|
|||||||
type: bind
|
type: bind
|
||||||
bind:
|
bind:
|
||||||
create_host_path: true
|
create_host_path: true
|
||||||
|
netalertx:
|
||||||
|
container_name: netalertx
|
||||||
|
environment:
|
||||||
|
TZ: ${TZ}
|
||||||
|
PORT: 20211
|
||||||
|
image: jokobsk/netalertx:latest
|
||||||
|
network_mode: host
|
||||||
|
labels:
|
||||||
|
homepage.group: Infrastructure/App Performance Monitoring
|
||||||
|
homepage.name: NetAlertX
|
||||||
|
homepage.href: http://192.168.1.254:20211
|
||||||
|
homepage.icon: netalertx.svg
|
||||||
|
homepage.description: Network Monitoring
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/netalertx/config:/app/config
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/netalertx/db:/app/db
|
||||||
|
# (optional) useful for debugging if you have issues setting up the container
|
||||||
|
# - ${DOCKER_VOLUME_CONFIG}/netalertx/logs:/app/log
|
||||||
|
# (API: OPTION 1) use for performance
|
||||||
|
- type: tmpfs
|
||||||
|
target: /app/api
|
||||||
|
# (API: OPTION 2) use when debugging issues
|
||||||
|
# - ${DOCKER_VOLUME_CONFIG}/netalertx/api:/app/api
|
||||||
netbird-dashboard:
|
netbird-dashboard:
|
||||||
container_name: netbird-dashboard
|
container_name: netbird-dashboard
|
||||||
environment:
|
environment:
|
||||||
@@ -3492,7 +3500,7 @@ services:
|
|||||||
- netbird-letsencrypt:/etc/letsencrypt:ro
|
- netbird-letsencrypt:/etc/letsencrypt:ro
|
||||||
- ${DOCKER_VOLUME_CONFIG}/netbird/management.json:/etc/netbird/management.json
|
- ${DOCKER_VOLUME_CONFIG}/netbird/management.json:/etc/netbird/management.json
|
||||||
ports:
|
ports:
|
||||||
- 33073:443 #API port
|
- 23833:443 #API port
|
||||||
netbird-coturn:
|
netbird-coturn:
|
||||||
command:
|
command:
|
||||||
- -c /etc/turnserver.conf
|
- -c /etc/turnserver.conf
|
||||||
@@ -3505,113 +3513,6 @@ services:
|
|||||||
# - ${DOCKER_VOLUME_CONFIG}/netbird/privkey.pem:/etc/coturn/private/privkey.pem:ro
|
# - ${DOCKER_VOLUME_CONFIG}/netbird/privkey.pem:/etc/coturn/private/privkey.pem:ro
|
||||||
# - ${DOCKER_VOLUME_CONFIG}/netbird/cert.pem:/etc/coturn/certs/cert.pem:ro
|
# - ${DOCKER_VOLUME_CONFIG}/netbird/cert.pem:/etc/coturn/certs/cert.pem:ro
|
||||||
network_mode: host
|
network_mode: host
|
||||||
netbox:
|
|
||||||
container_name: netbox
|
|
||||||
depends_on:
|
|
||||||
netbox-db:
|
|
||||||
condition: service_healthy
|
|
||||||
required: true
|
|
||||||
redis:
|
|
||||||
condition: service_started
|
|
||||||
required: true
|
|
||||||
environment:
|
|
||||||
PUID: ${PUID}
|
|
||||||
PGID: ${PGID}
|
|
||||||
TZ: ${TZ}
|
|
||||||
SUPERUSER_EMAIL: charish.patel@pm.me
|
|
||||||
SUPERUSER_PASSWORD: ${NETBOX_SUPERUSER_PASSWORD}
|
|
||||||
ALLOWED_HOST: net.trez.wtf
|
|
||||||
DB_NAME: netbox
|
|
||||||
DB_USER: netbox
|
|
||||||
DB_PASSWORD: ${NETBOX_PG_DB_PASSWORD}
|
|
||||||
DB_HOST: netbox-db
|
|
||||||
DB_PORT: 5432
|
|
||||||
DEBUG: false
|
|
||||||
DOCKER_MODS: linuxserver/mods:netbox-slurpit
|
|
||||||
REDIS_HOST: redis
|
|
||||||
REDIS_PORT: 6379
|
|
||||||
REMOTE_AUTH_ENABLED:
|
|
||||||
image: lscr.io/linuxserver/netbox:latest
|
|
||||||
labels:
|
|
||||||
homepage.group: Infrastructure/App Performance Monitoring
|
|
||||||
homepage.name: Netbox
|
|
||||||
homepage.href: https://net.${MY_TLD}
|
|
||||||
homepage.icon: netbox.svg
|
|
||||||
homepage.description: Network modeling/documentation
|
|
||||||
swag: enable
|
|
||||||
swag_url: net.${MY_TLD}
|
|
||||||
swag.uptime-kuma.enabled: true
|
|
||||||
swag.uptime-kuma.monitor.url: https://net.${MY_TLD}
|
|
||||||
ports:
|
|
||||||
- 8007:8000
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/netbox/:/config
|
|
||||||
netbox-db:
|
|
||||||
container_name: netbox-db
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: netbox
|
|
||||||
POSTGRES_PASSWORD: ${NETBOX_PG_DB_PASSWORD}
|
|
||||||
POSTGRES_DB: netbox
|
|
||||||
expose:
|
|
||||||
- 5432
|
|
||||||
healthcheck:
|
|
||||||
test: pg_isready -q -t 2 -d $$POSTGRES_DB -U $$POSTGRES_USER
|
|
||||||
start_period: 20s
|
|
||||||
timeout: 30s
|
|
||||||
interval: 10s
|
|
||||||
retries: 5
|
|
||||||
image: postgres:17-alpine
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- source: netbox-pg-db
|
|
||||||
target: /var/lib/postgresql/data
|
|
||||||
type: volume
|
|
||||||
volume: {}
|
|
||||||
netdata:
|
|
||||||
cap_add:
|
|
||||||
- SYS_PTRACE
|
|
||||||
- SYS_ADMIN
|
|
||||||
container_name: netdata
|
|
||||||
depends_on:
|
|
||||||
docker-socket-proxy:
|
|
||||||
condition: service_started
|
|
||||||
required: true
|
|
||||||
environment:
|
|
||||||
DOCKER_HOST: tcp://dockerproxy:2375
|
|
||||||
image: netdata/netdata:stable
|
|
||||||
labels:
|
|
||||||
homepage.group: Infrastructure/App Monitoring
|
|
||||||
homepage.name: Netdata
|
|
||||||
homepage.href: https://netdata.${MY_TLD}
|
|
||||||
homepage.icon: netdata.svg
|
|
||||||
homepage.description: Real-time monitoring/observcability platform
|
|
||||||
homepage.widget.type: netdata
|
|
||||||
homepage.widget.url: http://netdata:19999
|
|
||||||
swag: enable
|
|
||||||
swag_port: 19999
|
|
||||||
swag_proto: http
|
|
||||||
swag_url: netdata.${MY_TLD}
|
|
||||||
swag.uptime-kuma.enabled: true
|
|
||||||
swag.uptime-kuma.monitor.url: https://netdata.${MY_TLD}
|
|
||||||
pid: host
|
|
||||||
ports:
|
|
||||||
- 19999:19999
|
|
||||||
restart: unless-stopped
|
|
||||||
security_opt:
|
|
||||||
- apparmor:unconfined
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/netdata:/etc/netdata
|
|
||||||
- netdata-lib:/var/lib/netdata
|
|
||||||
- netdata-cache:/var/cache/netdata
|
|
||||||
- /:/host/root:ro,rslave
|
|
||||||
- /etc/passwd:/host/etc/passwd:ro
|
|
||||||
- /etc/group:/host/etc/group:ro
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
- /proc:/host/proc:ro
|
|
||||||
- /sys:/host/sys:ro
|
|
||||||
- /etc/os-release:/host/etc/os-release:ro
|
|
||||||
- /var/log:/host/var/log:ro
|
|
||||||
nextcloud:
|
nextcloud:
|
||||||
container_name: nextcloud-aio-mastercontainer
|
container_name: nextcloud-aio-mastercontainer
|
||||||
environment:
|
environment:
|
||||||
@@ -3701,6 +3602,8 @@ services:
|
|||||||
required: true
|
required: true
|
||||||
restart: true
|
restart: true
|
||||||
environment:
|
environment:
|
||||||
|
ENABLE_SIGNUP: true
|
||||||
|
ENABLE_LOGIN_FORM: true
|
||||||
ENABLE_OLLAMA_API: true
|
ENABLE_OLLAMA_API: true
|
||||||
OLLAMA_BASE_URLS: http://ollama:11434
|
OLLAMA_BASE_URLS: http://ollama:11434
|
||||||
image: ghcr.io/open-webui/open-webui:main
|
image: ghcr.io/open-webui/open-webui:main
|
||||||
@@ -3782,6 +3685,40 @@ services:
|
|||||||
type: bind
|
type: bind
|
||||||
bind:
|
bind:
|
||||||
create_host_path: true
|
create_host_path: true
|
||||||
|
parseable:
|
||||||
|
command: [ "parseable", "s3-store" ]
|
||||||
|
depends_on:
|
||||||
|
- minio
|
||||||
|
environment:
|
||||||
|
P_STAGING_DIR: /staging
|
||||||
|
P_ADDR: 0.0.0.0:8000
|
||||||
|
P_USERNAME: admin
|
||||||
|
P_PASSWORD: ${PARSEABLE_PASSWORD}
|
||||||
|
P_S3_URL: http://minio:9000
|
||||||
|
P_S3_BUCKET: parseable
|
||||||
|
P_S3_ACCESS_KEY: ${PARSEABLE_S3_ACCESS_KEY}
|
||||||
|
P_S3_SECRET_KEY: ${PARSEABLE_S3_SECRET_KEY}
|
||||||
|
P_S3_REGION: us-east-fh-pln
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD", "curl", "-f", "http://localhost:8000/api/v1/liveness" ]
|
||||||
|
interval: 15s
|
||||||
|
timeout: 20s
|
||||||
|
retries: 5
|
||||||
|
image: containers.parseable.com/parseable/parseable:latest
|
||||||
|
labels:
|
||||||
|
homepage.group: Infrastructure/App Performance Monitoring
|
||||||
|
homepage.name: Parseable
|
||||||
|
homepage.href: https://logs.${MY_TLD}
|
||||||
|
homepage.icon: parseable.svg
|
||||||
|
homepage.description: Backups for PostgreSQL
|
||||||
|
swag: enable
|
||||||
|
swag_proto: http
|
||||||
|
swag_port: 8000
|
||||||
|
swag_url: logs.${MY_TLD}
|
||||||
|
volumes:
|
||||||
|
- /parseable/staging:/staging
|
||||||
|
ports:
|
||||||
|
- 14453:8000
|
||||||
pgbackweb:
|
pgbackweb:
|
||||||
container_name: pgbackweb
|
container_name: pgbackweb
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -3936,6 +3873,29 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- portainer-data:/data
|
- portainer-data:/data
|
||||||
|
portall:
|
||||||
|
container_name: portall
|
||||||
|
image: need4swede/portall:latest
|
||||||
|
environment:
|
||||||
|
SECRET_KEY: ${PORTALL_SECRET_KEY}
|
||||||
|
labels:
|
||||||
|
swag: enable
|
||||||
|
swag_auth: authelia
|
||||||
|
swag_proto: http
|
||||||
|
swag_port: 8080
|
||||||
|
swag_url: portall.${MY_TLD}
|
||||||
|
swag.uptime-kuma.enabled: true
|
||||||
|
swag.uptime-kuma.monitor.url: https://portall.${MY_TLD}
|
||||||
|
homepage.group: System Administration
|
||||||
|
homepage.name: Portall
|
||||||
|
homepage.href: https://portall.${MY_TLD}
|
||||||
|
homepage.icon: sh-portall.png
|
||||||
|
homepage.description: Management for container ports
|
||||||
|
ports:
|
||||||
|
- 8000:8080
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/portall:/app/instance
|
||||||
postal-smtp:
|
postal-smtp:
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_BIND_SERVICE
|
- NET_BIND_SERVICE
|
||||||
@@ -4457,6 +4417,10 @@ services:
|
|||||||
swag_proto: http
|
swag_proto: http
|
||||||
swag_port: 3000
|
swag_port: 3000
|
||||||
swag_url: scrape.${MY_TLD}
|
swag_url: scrape.${MY_TLD}
|
||||||
|
swag_server_custom_directive: |
|
||||||
|
location /api {
|
||||||
|
proxy_pass http://scraperr-api:8000;
|
||||||
|
}
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
swag.uptime-kuma.monitor.url: https://scrape.${MY_TLD}
|
swag.uptime-kuma.monitor.url: https://scrape.${MY_TLD}
|
||||||
networks:
|
networks:
|
||||||
@@ -4476,11 +4440,6 @@ services:
|
|||||||
expose:
|
expose:
|
||||||
- 8000
|
- 8000
|
||||||
image: jpyles0524/scraperr_api:latest
|
image: jpyles0524/scraperr_api:latest
|
||||||
labels:
|
|
||||||
swag: enable
|
|
||||||
swag_proto: http
|
|
||||||
swag_port: 3000
|
|
||||||
swag_server_custom_directive: "location /api/ { rewrite ^/api(/.*)$ /$1 break ; proxy_pass http://scraperr:3000; }"
|
|
||||||
networks:
|
networks:
|
||||||
default: null
|
default: null
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -4577,83 +4536,6 @@ services:
|
|||||||
type: bind
|
type: bind
|
||||||
bind:
|
bind:
|
||||||
create_host_path: true
|
create_host_path: true
|
||||||
slurpit-portal:
|
|
||||||
container_name: slurpit-portal
|
|
||||||
environment:
|
|
||||||
TZ: ${TZ}
|
|
||||||
PORTAL_BASE_URL: https://slurpit.trez.wtf
|
|
||||||
PORTAL_WAREHOUSE_URL: http://slurpit-warehouse
|
|
||||||
image: slurpit/portal:latest
|
|
||||||
labels:
|
|
||||||
homepage.group: Infrastructure/App Performance Monitoring
|
|
||||||
homepage.name: Slurp'it
|
|
||||||
homepage.href: https://slurpit.${MY_TLD}
|
|
||||||
homepage.icon: /icons/slurpit.png
|
|
||||||
homepage.description: Network discovery
|
|
||||||
swag: enable
|
|
||||||
swag_port: 80
|
|
||||||
swag_url: slurpit.${MY_TLD}
|
|
||||||
swag.uptime-kuma.enabled: true
|
|
||||||
swag.uptime-kuma.monitor.url: https://slurpit.${MY_TLD}
|
|
||||||
ports:
|
|
||||||
- 8110:80
|
|
||||||
- 5443:443
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/nginx:/var/log/nginx/
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/mysql:/var/log/mysql/
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/php:/var/log/php/
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/certs:/etc/nginx/certs/
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/db/portal:/var/lib/mysql
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/backup/portal:/backup/files
|
|
||||||
slurpit-scanner:
|
|
||||||
container_name: slurpit-scanner
|
|
||||||
depends_on:
|
|
||||||
slurpit-warehouse:
|
|
||||||
condition: service_healthy
|
|
||||||
environment:
|
|
||||||
TZ: ${TZ}
|
|
||||||
SCANNER_POOLSIZE: 4
|
|
||||||
SCANNER_TIMEOUT: 10
|
|
||||||
SCANNER_WAREHOUSE_URL: http://slurpit-warehouse
|
|
||||||
image: slurpit/scanner:latest
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/scanner:/logs
|
|
||||||
slurpit-scraper:
|
|
||||||
container_name: slurpit-scraper
|
|
||||||
depends_on:
|
|
||||||
slurpit-warehouse:
|
|
||||||
condition: service_healthy
|
|
||||||
image: slurpit/scraper:latest
|
|
||||||
environment:
|
|
||||||
TZ: ${TZ}
|
|
||||||
SCRAPER_TIMEOUT: 20
|
|
||||||
SCRAPER_POOLSIZE: 4
|
|
||||||
SCRAPER_WAREHOUSE_URL: http://slurpit-warehouse
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/scraper:/logs
|
|
||||||
slurpit-warehouse:
|
|
||||||
container_name: slurpit-warehouse
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "curl", "-f", "http://localhost/services"]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 10s
|
|
||||||
retries: 360
|
|
||||||
image: slurpit/warehouse:latest
|
|
||||||
environment:
|
|
||||||
TZ: ${TZ}
|
|
||||||
WAREHOUSE_CALLBACK_SCANNER_URL: http://slurpit-portal/callback/scanner
|
|
||||||
WAREHOUSE_CALLBACK_SCANNER_TOKEN:
|
|
||||||
WAREHOUSE_CALLBACK_SCRAPER_URL: http://slurpit-portal/callback/scraper
|
|
||||||
WAREHOUSE_CALLBACK_SCRAPER_TOKEN:
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/backup/warehouse:/backup/files
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/db/warehouse:/var/lib/mongodb
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/warehouse/mongodb:/var/log/mongodb
|
|
||||||
- ${DOCKER_VOLUME_CONFIG}/slurpit/logs/warehouse:/logs
|
|
||||||
sonarqube:
|
sonarqube:
|
||||||
container_name: sonarqube
|
container_name: sonarqube
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -4815,7 +4697,7 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- lidarr
|
- lidarr
|
||||||
- soulseek
|
- soulseek
|
||||||
environment:
|
environment:
|
||||||
PUID: ${PUID}
|
PUID: ${PUID}
|
||||||
PGID: ${PGID}
|
PGID: ${PGID}
|
||||||
TZ: ${TZ}
|
TZ: ${TZ}
|
||||||
@@ -4904,11 +4786,13 @@ services:
|
|||||||
homepage.description: Self-hosted internet performance tracking
|
homepage.description: Self-hosted internet performance tracking
|
||||||
homepage.href: https://speed.${MY_TLD}
|
homepage.href: https://speed.${MY_TLD}
|
||||||
homepage.icon: speedtest-tracker.png
|
homepage.icon: speedtest-tracker.png
|
||||||
|
homepage.widget.type: speedtest
|
||||||
|
homepage.widget.url: http://speedtest-tracker
|
||||||
swag: enable
|
swag: enable
|
||||||
swag_proto: http
|
swag_proto: http
|
||||||
swag_url: speed.${MY_TLD}
|
swag_url: speed.${MY_TLD}
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
swag.uptime-kuma.monitor.url: https://slsk.${MY_TLD}
|
swag.uptime-kuma.monitor.url: https://speed.${MY_TLD}
|
||||||
ports:
|
ports:
|
||||||
- 47512:80
|
- 47512:80
|
||||||
- 62777:443
|
- 62777:443
|
||||||
@@ -4953,7 +4837,7 @@ services:
|
|||||||
VALIDATION: dns
|
VALIDATION: dns
|
||||||
CROWDSEC_API_KEY: ${CROWDSEC_API_KEY}
|
CROWDSEC_API_KEY: ${CROWDSEC_API_KEY}
|
||||||
CROWDSEC_LAPI_URL: http://crowdsec:8080
|
CROWDSEC_LAPI_URL: http://crowdsec:8080
|
||||||
DOCKER_MODS: linuxserver/mods:universal-docker|linuxserver/mods:swag-auto-reload|linuxserver/mods:swag-auto-proxy|linuxserver/mods:swag-dashboard|linuxserver/mods:swag-maxmind|linuxserver/mods:universal-stdout-logs|ghcr.io/linuxserver/mods:swag-crowdsec #|linuxserver/mods:swag-auto-uptime-kuma
|
DOCKER_MODS: linuxserver/mods:universal-docker|linuxserver/mods:swag-auto-reload|linuxserver/mods:swag-auto-proxy|linuxserver/mods:swag-dashboard|linuxserver/mods:swag-maxmind|linuxserver/mods:universal-stdout-logs|ghcr.io/linuxserver/mods:swag-crowdsec|linuxserver/mods:swag-auto-uptime-kuma
|
||||||
PROPAGATION: 30
|
PROPAGATION: 30
|
||||||
UPTIME_KUMA_PASSWORD: ${UPTIME_KUMA_PASSWORD}
|
UPTIME_KUMA_PASSWORD: ${UPTIME_KUMA_PASSWORD}
|
||||||
UPTIME_KUMA_URL: http://uptimekuma:3001
|
UPTIME_KUMA_URL: http://uptimekuma:3001
|
||||||
@@ -5046,7 +4930,7 @@ services:
|
|||||||
swag_proto: http
|
swag_proto: http
|
||||||
swag_url: recipes.${MY_TLD}
|
swag_url: recipes.${MY_TLD}
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
swag.uptime-kuma.monitor.url: https://trac.${MY_TLD}
|
swag.uptime-kuma.monitor.url: https://recipes.${MY_TLD}
|
||||||
networks:
|
networks:
|
||||||
default: null
|
default: null
|
||||||
ports:
|
ports:
|
||||||
@@ -6459,6 +6343,16 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_CONFIG}/hashicorp-vault/config/:/vault/config
|
- ${DOCKER_VOLUME_CONFIG}/hashicorp-vault/config/:/vault/config
|
||||||
- ${DOCKER_VOLUME_CONFIG}/hashicorp-vault/logs/:/vault/logs
|
- ${DOCKER_VOLUME_CONFIG}/hashicorp-vault/logs/:/vault/logs
|
||||||
|
vector:
|
||||||
|
image: timberio/vector:0.44.0-alpine
|
||||||
|
container_name: vector
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
|
ports:
|
||||||
|
- 60157:8686
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/vector/vector.yaml:/etc/vector/vector.yaml:ro
|
||||||
wallabag:
|
wallabag:
|
||||||
container_name: wallabag
|
container_name: wallabag
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -6533,7 +6427,7 @@ services:
|
|||||||
swag_proto: http
|
swag_proto: http
|
||||||
swag_url: subs.${MY_TLD}
|
swag_url: subs.${MY_TLD}
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
swag.uptime-kuma.monitor.url: https://trac.${MY_TLD}
|
swag.uptime-kuma.monitor.url: https://subs.${MY_TLD}
|
||||||
networks:
|
networks:
|
||||||
default: null
|
default: null
|
||||||
ports:
|
ports:
|
||||||
@@ -6597,267 +6491,6 @@ 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
|
||||||
# wazuh-agent:
|
|
||||||
# container_name: wazuh.agent
|
|
||||||
# environment:
|
|
||||||
# JOIN_MANAGER_PROTOCOL: https
|
|
||||||
# JOIN_MANAGER_MASTER_HOST: wazuh.manager
|
|
||||||
# JOIN_MANAGER_WORKER_HOST: wazuh.manager
|
|
||||||
# JOIN_MANAGER_USER: wazuh-wui
|
|
||||||
# JOIN_MANAGER_PASSWORD: ${WAZUH_API_PASSWORD}
|
|
||||||
# JOIN_MANAGER_API_PORT: 55000
|
|
||||||
# JOIN_MANAGER_PORT: 1514
|
|
||||||
# VIRUS_TOTAL_KEY: ${VIRUS_TOTAL_API_KEY}
|
|
||||||
# DOCKER_HOST: tcp://dockerproxy:2375
|
|
||||||
# hostname: wazuh.agent
|
|
||||||
# image: kennyopennix/wazuh-agent:latest
|
|
||||||
# networks:
|
|
||||||
# default: null
|
|
||||||
# restart: unless-stopped
|
|
||||||
# wazuh-dashboard:
|
|
||||||
# container_name: wazuh-dashboard
|
|
||||||
# depends_on:
|
|
||||||
# wazuh-indexer:
|
|
||||||
# condition: service_started
|
|
||||||
# required: true
|
|
||||||
# wazuh-manager:
|
|
||||||
# condition: service_started
|
|
||||||
# required: true
|
|
||||||
# restart: true
|
|
||||||
# environment:
|
|
||||||
# INDEXER_USERNAME: admin
|
|
||||||
# INDEXER_PASSWORD: ${WAZUH_INDEXER_PASSWORD}
|
|
||||||
# WAZUH_API_URL: https://wazuh.manager
|
|
||||||
# DASHBOARD_USERNAME: kibanaserver
|
|
||||||
# DASHBOARD_PASSWORD: ${WAZUH_KIBANA_PASSWORD}
|
|
||||||
# API_USERNAME: wazuh-wui
|
|
||||||
# API_PASSWORD: ${WAZUH_API_PASSWORD}
|
|
||||||
# hostname: wazuh-dashboard
|
|
||||||
# image: wazuh/wazuh-dashboard:${WAZUH_VERSION}
|
|
||||||
# labels:
|
|
||||||
# swag: enable
|
|
||||||
# swag_proto: https
|
|
||||||
# swag_port: 5601
|
|
||||||
# swag_url: wsec.${MY_TLD}
|
|
||||||
# swag.uptime-kuma.enabled: true
|
|
||||||
# swag.uptime-kuma.monitor.url: https://wsec.${MY_TLD}
|
|
||||||
# homepage.group: Privacy/Security
|
|
||||||
# homepage.name: Wazuh
|
|
||||||
# homepage.href: https://wsec.${MY_TLD}
|
|
||||||
# homepage.icon: wazuh.svg
|
|
||||||
# homepage.description: OSS Security Platform for XDR/SIEM
|
|
||||||
# links:
|
|
||||||
# - wazuh-indexer:wazuh-indexer
|
|
||||||
# - wazuh-manager:wazuh-manager
|
|
||||||
# networks:
|
|
||||||
# default: null
|
|
||||||
# ports:
|
|
||||||
# - mode: ingress
|
|
||||||
# protocol: tcp
|
|
||||||
# published: "5601"
|
|
||||||
# target: 5601
|
|
||||||
# restart: always
|
|
||||||
# volumes:
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/wazuh.dashboard.pem
|
|
||||||
# target: /usr/share/wazuh-dashboard/certs/wazuh-dashboard.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/wazuh.dashboard-key.pem
|
|
||||||
# target: /usr/share/wazuh-dashboard/certs/wazuh-dashboard-key.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/root-ca.pem
|
|
||||||
# target: /usr/share/wazuh-dashboard/certs/root-ca.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/dashboard/opensearch_dashboards.yml
|
|
||||||
# target: /usr/share/wazuh-dashboard/config/opensearch_dashboards.yml
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/dashboard/wazuh.yml
|
|
||||||
# target: /usr/share/wazuh-dashboard/data/wazuh/config/wazuh.yml
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: wazuh-dashboard-config
|
|
||||||
# target: /usr/share/wazuh-dashboard/data/wazuh/config
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh-dashboard-custom
|
|
||||||
# target: /usr/share/wazuh-dashboard/plugins/wazuh/public/assets/custom
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# wazuh-indexer:
|
|
||||||
# container_name: wazuh-indexer
|
|
||||||
# environment:
|
|
||||||
# OPENSEARCH_JAVA_OPTS: -Xms512m -Xmx512m
|
|
||||||
# hostname: wazuh-indexer
|
|
||||||
# image: wazuh/wazuh-indexer:${WAZUH_VERSION}
|
|
||||||
# networks:
|
|
||||||
# default: null
|
|
||||||
# ports:
|
|
||||||
# - mode: ingress
|
|
||||||
# protocol: tcp
|
|
||||||
# published: "9200"
|
|
||||||
# target: 9200
|
|
||||||
# restart: always
|
|
||||||
# ulimits:
|
|
||||||
# memlock:
|
|
||||||
# hard: -1
|
|
||||||
# soft: -1
|
|
||||||
# nofile:
|
|
||||||
# hard: 65536
|
|
||||||
# soft: 65536
|
|
||||||
# volumes:
|
|
||||||
# - source: wazuh-indexer-data
|
|
||||||
# target: /var/lib/wazuh-indexer
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/root-ca.pem
|
|
||||||
# target: /usr/share/wazuh-indexer/certs/root-ca.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/wazuh.indexer-key.pem
|
|
||||||
# target: /usr/share/wazuh-indexer/certs/wazuh.indexer.key
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/wazuh.indexer.pem
|
|
||||||
# target: /usr/share/wazuh-indexer/certs/wazuh.indexer.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/admin.pem
|
|
||||||
# target: /usr/share/wazuh-indexer/certs/admin.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/admin-key.pem
|
|
||||||
# target: /usr/share/wazuh-indexer/certs/admin-key.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/indexer/wazuh.indexer.yml
|
|
||||||
# target: /usr/share/wazuh-indexer/opensearch.yml
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/indexer/internal_users.yml
|
|
||||||
# target: /usr/share/wazuh-indexer/opensearch-security/internal_users.yml
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# wazuh-manager:
|
|
||||||
# container_name: wazuh-manager
|
|
||||||
# environment:
|
|
||||||
# INDEXER_URL: https://wazuh.indexer:9200
|
|
||||||
# INDEXER_USERNAME: admin
|
|
||||||
# INDEXER_PASSWORD: ${WAZUH_INDEXER_PASSWORD}
|
|
||||||
# FILEBEAT_SSL_VERIFICATION_MODE: full
|
|
||||||
# SSL_CERTIFICATE_AUTHORITIES: /etc/ssl/root-ca.pem
|
|
||||||
# SSL_CERTIFICATE: /etc/ssl/filebeat.pem
|
|
||||||
# SSL_KEY: /etc/ssl/filebeat.key
|
|
||||||
# API_USERNAME: wazuh-wui
|
|
||||||
# API_PASSWORD: ${WAZUH_API_PASSWORD}
|
|
||||||
# hostname: wazuh-manager
|
|
||||||
# image: wazuh/wazuh-manager:${WAZUH_VERSION}
|
|
||||||
# networks:
|
|
||||||
# default: null
|
|
||||||
# ports:
|
|
||||||
# - mode: ingress
|
|
||||||
# protocol: tcp
|
|
||||||
# published: "1514"
|
|
||||||
# target: 1514
|
|
||||||
# - mode: ingress
|
|
||||||
# protocol: tcp
|
|
||||||
# published: "1515"
|
|
||||||
# target: 1515
|
|
||||||
# - mode: ingress
|
|
||||||
# protocol: udp
|
|
||||||
# published: "514"
|
|
||||||
# target: 514
|
|
||||||
# - mode: ingress
|
|
||||||
# protocol: tcp
|
|
||||||
# published: "55000"
|
|
||||||
# target: 55000
|
|
||||||
# restart: always
|
|
||||||
# ulimits:
|
|
||||||
# memlock:
|
|
||||||
# hard: -1
|
|
||||||
# soft: -1
|
|
||||||
# nofile:
|
|
||||||
# hard: 655360
|
|
||||||
# soft: 655360
|
|
||||||
# volumes:
|
|
||||||
# - source: wazuh_api_configuration
|
|
||||||
# target: /var/ossec/api/configuration
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_etc
|
|
||||||
# target: /var/ossec/etc
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_logs
|
|
||||||
# target: /var/ossec/logs
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_queue
|
|
||||||
# target: /var/ossec/queue
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_var_multigroups
|
|
||||||
# target: /var/ossec/var/multigroups
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_integrations
|
|
||||||
# target: /var/ossec/integrations
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_active_response
|
|
||||||
# target: /var/ossec/active-response/bin
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_agentless
|
|
||||||
# target: /var/ossec/agentless
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: wazuh_wodles
|
|
||||||
# target: /var/ossec/wodles
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: filebeat_etc
|
|
||||||
# target: /etc/filebeat
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: filebeat_var
|
|
||||||
# target: /var/lib/filebeat
|
|
||||||
# type: volume
|
|
||||||
# volume: {}
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/root-ca.pem
|
|
||||||
# target: /etc/ssl/root-ca.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/wazuh.manager.pem
|
|
||||||
# target: /etc/ssl/filebeat.pem
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/generator/wazuh.manager-key.pem
|
|
||||||
# target: /etc/ssl/filebeat.key
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
# - source: ${DOCKER_VOLUME_CONFIG}/wazuh/manager/wazuh_manager.conf
|
|
||||||
# target: /wazuh-config-mount/etc/ossec.conf
|
|
||||||
# type: bind
|
|
||||||
# bind:
|
|
||||||
# create_host_path: true
|
|
||||||
web-check:
|
web-check:
|
||||||
container_name: web-check
|
container_name: web-check
|
||||||
image: lissy93/web-check
|
image: lissy93/web-check
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
sources:
|
||||||
|
rinoa_docker_logs:
|
||||||
|
type: docker_logs
|
||||||
|
exclude_containers:
|
||||||
|
- zammad-init
|
||||||
|
|
||||||
|
sinks:
|
||||||
|
parseable:
|
||||||
|
type: http
|
||||||
|
method: post
|
||||||
|
batch:
|
||||||
|
max_bytes: 10485760
|
||||||
|
max_events: 1000
|
||||||
|
timeout_secs: 10
|
||||||
|
compression: gzip
|
||||||
|
inputs:
|
||||||
|
- rinoa_docker_logs
|
||||||
|
encoding:
|
||||||
|
codec: json
|
||||||
|
uri: http://parseable:8000/api/v1/ingest'
|
||||||
|
auth:
|
||||||
|
strategy: basic
|
||||||
|
user: admin
|
||||||
|
password: {{ lookup('community.hashi_vault.vault_kv2_get', 'env', engine_mount_point='rinoa-docker', url=vault_addr, token=vault_token_cleaned)['secret']['PARSEABLE_PASSWORD'] }}
|
||||||
|
request:
|
||||||
|
headers:
|
||||||
|
X-P-Stream: vectordemo
|
||||||
|
healthcheck:
|
||||||
|
enabled: true
|
||||||
|
path: 'http://parseable:8000/api/v1/liveness'
|
||||||
|
port: 80
|
||||||
Reference in New Issue
Block a user