Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c869ce43f | |||
| e3136340fd | |||
| 9058ac5505 | |||
| d388a2c975 | |||
| 03b7821dbf | |||
| 0825c61e39 | |||
| b7d7d5e000 | |||
| ffc9c1833d | |||
| 26be908bbe | |||
| 2a1233312e | |||
| a99ef85ef2 | |||
| bf600a618d | |||
| b0cc71e809 | |||
| ffccf913f1 |
@@ -79,6 +79,13 @@ jobs:
|
|||||||
--check
|
--check
|
||||||
requirements: collections/requirements.yml
|
requirements: collections/requirements.yml
|
||||||
vault_password: ${{ secrets.ANSIBLE_VAULT_PASSWORD }}
|
vault_password: ${{ secrets.ANSIBLE_VAULT_PASSWORD }}
|
||||||
|
- name: Gotify Notification
|
||||||
|
uses: eikendev/gotify-action@master
|
||||||
|
with:
|
||||||
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
|
notification_title: 'GITEA: Ansible Config Dry Run @ Rinoa'
|
||||||
|
notification_message: 'Ansible dry run completed successfully.'
|
||||||
- name: Generate .env file for Docker Compose Dry Run
|
- name: Generate .env file for Docker Compose Dry Run
|
||||||
run: |
|
run: |
|
||||||
vault kv get -format=json rinoa-docker/env | jq -r '.data.data' | jq -r 'keys[] as $k | "\($k)='\''\(.[$k])'\''"' > .env
|
vault kv get -format=json rinoa-docker/env | jq -r '.data.data' | jq -r 'keys[] as $k | "\($k)='\''\(.[$k])'\''"' > .env
|
||||||
@@ -97,6 +104,13 @@ jobs:
|
|||||||
up-opts: --dry-run -d --remove-orphans
|
up-opts: --dry-run -d --remove-orphans
|
||||||
env:
|
env:
|
||||||
DOCKER_HOST: tcp://dockerproxy:2375
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
|
- name: Gotify Notification
|
||||||
|
uses: eikendev/gotify-action@master
|
||||||
|
with:
|
||||||
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
|
notification_title: 'GITEA: Docker Compose Dry Run @ Rinoa'
|
||||||
|
notification_message: 'Docker Compose dry run completed successfully.'
|
||||||
cloudflare-dns-setup:
|
cloudflare-dns-setup:
|
||||||
name: Cloudflare DNS Setup
|
name: Cloudflare DNS Setup
|
||||||
needs: [docker-compose-ansible-lints]
|
needs: [docker-compose-ansible-lints]
|
||||||
@@ -132,6 +146,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
yq '.services[].labels.swag_url' docker-compose.yml | egrep -v 'null' | sed -e 's|"||g' | awk -F'.' '{print $1}' | sort > compose_subdomains.txt
|
yq '.services[].labels.swag_url' docker-compose.yml | egrep -v 'null' | sed -e 's|"||g' | awk -F'.' '{print $1}' | sort > compose_subdomains.txt
|
||||||
flarectl --json dns list --zone "trez.wtf" --type=CNAME --content "trez.wtf" | jq '.[].Name' | sed -e 's|"||g' | awk -F"." '{print $1}' | sort > cloudflare_subdomains.txt
|
flarectl --json dns list --zone "trez.wtf" --type=CNAME --content "trez.wtf" | jq '.[].Name' | sed -e 's|"||g' | awk -F"." '{print $1}' | sort > cloudflare_subdomains.txt
|
||||||
|
- name: Gotify Notification
|
||||||
|
uses: eikendev/gotify-action@master
|
||||||
|
with:
|
||||||
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
|
notification_title: 'GITEA: Cloudflare Setup @ Rinoa'
|
||||||
|
notification_message: 'Starting Cloudflare setup'
|
||||||
- name: Compare Subdomains
|
- name: Compare Subdomains
|
||||||
id: compare-subdomains
|
id: compare-subdomains
|
||||||
uses: LouisBrunner/diff-action@v2.2.0
|
uses: LouisBrunner/diff-action@v2.2.0
|
||||||
@@ -152,6 +173,13 @@ jobs:
|
|||||||
echo "Creating $subdomain.trez.wtf..."
|
echo "Creating $subdomain.trez.wtf..."
|
||||||
flarectl dns create --zone "trez.wtf" --name "${subdomain}" --type=CNAME --content "trez.wtf" --proxy true
|
flarectl dns create --zone "trez.wtf" --name "${subdomain}" --type=CNAME --content "trez.wtf" --proxy true
|
||||||
done
|
done
|
||||||
|
- name: Gotify Notification
|
||||||
|
uses: eikendev/gotify-action@master
|
||||||
|
with:
|
||||||
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
|
notification_title: 'GITEA: Cloudflare Setup @ Rinoa'
|
||||||
|
notification_message: 'Cloudflare DNS setup completed successfully.'
|
||||||
regenerate-readme:
|
regenerate-readme:
|
||||||
name: Update README
|
name: Update README
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -203,6 +231,14 @@ jobs:
|
|||||||
echo "Merging PR..."
|
echo "Merging PR..."
|
||||||
pr_index=$(tea pr ls --repo ${{ github.repository }} --state open --fields index,title,head,state --output csv | egrep ${{ github.ref_name }} | awk -F"," '{print $1}' | sed -e 's|"||g')
|
pr_index=$(tea pr ls --repo ${{ github.repository }} --state open --fields index,title,head,state --output csv | egrep ${{ github.ref_name }} | awk -F"," '{print $1}' | sed -e 's|"||g')
|
||||||
tea pr m --repo ${{ github.repository }} --title "Auto Merge of PR ${pr_index} - ${{ github.ref_name }}" --message "Merged by ${{ github.actor }}" ${pr_index}
|
tea pr m --repo ${{ github.repository }} --title "Auto Merge of PR ${pr_index} - ${{ github.ref_name }}" --message "Merged by ${{ github.actor }}" ${pr_index}
|
||||||
|
echo "pr_index=${pr_index}" >> $GITHUB_OUTPUT
|
||||||
|
- name: Gotify Notification
|
||||||
|
uses: eikendev/gotify-action@master
|
||||||
|
with:
|
||||||
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
|
notification_title: 'GITEA: PR Merge Successful'
|
||||||
|
notification_message: 'PR #${{ steps.pr_merge.outputs.pr_index }} merged.'
|
||||||
ansible-config-docker-compose-deploy:
|
ansible-config-docker-compose-deploy:
|
||||||
name: Deploy via Ansible & Docker Compose
|
name: Deploy via Ansible & Docker Compose
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -245,7 +281,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
notification_title: 'Ansible Config Deployment @ Rinoa'
|
notification_title: 'GITEA: Ansible Config Deployment @ Rinoa'
|
||||||
notification_message: 'Deployment completed successfully.'
|
notification_message: 'Deployment completed successfully.'
|
||||||
- name: Generate .env file for deployment
|
- name: Generate .env file for deployment
|
||||||
run: |
|
run: |
|
||||||
@@ -264,5 +300,5 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
|
||||||
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
|
||||||
notification_title: 'Docker Compose Deployment @ Rinoa'
|
notification_title: 'GITEA: Docker Compose Deployment @ Rinoa'
|
||||||
notification_message: 'Deployment completed successfully.'
|
notification_message: 'Deployment completed successfully.'
|
||||||
@@ -99,6 +99,7 @@
|
|||||||
| plausible | ghcr.io/plausible/community-edition:v2.1.0 |
|
| plausible | ghcr.io/plausible/community-edition:v2.1.0 |
|
||||||
| 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 |
|
||||||
| 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 |
|
||||||
@@ -125,6 +126,7 @@
|
|||||||
| sonashow | thewicklowwolf/sonashow:latest |
|
| sonashow | thewicklowwolf/sonashow:latest |
|
||||||
| soularr | mrusse08/soularr:latest |
|
| soularr | mrusse08/soularr:latest |
|
||||||
| soulseek | slskd/slskd |
|
| soulseek | slskd/slskd |
|
||||||
|
| sourcebot | ghcr.io/sourcebot-dev/sourcebot:latest |
|
||||||
| speedtest-tracker | lscr.io/linuxserver/speedtest-tracker:latest |
|
| speedtest-tracker | lscr.io/linuxserver/speedtest-tracker:latest |
|
||||||
| spotisub | blastbeng/spotisub:latest |
|
| spotisub | blastbeng/spotisub:latest |
|
||||||
| swag | lscr.io/linuxserver/swag:latest |
|
| swag | lscr.io/linuxserver/swag:latest |
|
||||||
|
|||||||
+82
-44
@@ -40,7 +40,7 @@ services:
|
|||||||
adguard:
|
adguard:
|
||||||
container_name: adguard
|
container_name: adguard
|
||||||
environment:
|
environment:
|
||||||
TZ: America/New_York
|
TZ: ${TZ}
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
image: adguard/adguardhome:latest
|
image: adguard/adguardhome:latest
|
||||||
labels:
|
labels:
|
||||||
@@ -289,10 +289,10 @@ services:
|
|||||||
bazarr:
|
bazarr:
|
||||||
container_name: bazarr
|
container_name: bazarr
|
||||||
environment:
|
environment:
|
||||||
- PGID=1000
|
PGID: ${PGID}
|
||||||
- PUID=1000
|
PUID: ${PUID}
|
||||||
- TZ=America/New_York
|
TZ: ${TZ}
|
||||||
- DOCKER_MODS=ghcr.io/gilbn/theme.park:bazarr
|
DOCKER_MODS: ghcr.io/gilbn/theme.park:bazarr
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
image: lscr.io/linuxserver/bazarr:latest
|
image: lscr.io/linuxserver/bazarr:latest
|
||||||
labels:
|
labels:
|
||||||
@@ -853,6 +853,9 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
CONNECTIONS: authelia-pg,bitmagnet-pg-db,gitea-db,invidious-db,joplin-db,lobe-chat-pg-db,mariadb,mastodon-pg-db,mongodb,netbox-db,pgbackweb,pgbackweb-db,plausible-db,plausible-events-db,reactive-resume-pg,sonarqube-pg-db,synapse-db,tandoor-pg,traccar-pg,whodb,zitadel-pg-db
|
CONNECTIONS: authelia-pg,bitmagnet-pg-db,gitea-db,invidious-db,joplin-db,lobe-chat-pg-db,mariadb,mastodon-pg-db,mongodb,netbox-db,pgbackweb,pgbackweb-db,plausible-db,plausible-events-db,reactive-resume-pg,sonarqube-pg-db,synapse-db,tandoor-pg,traccar-pg,whodb,zitadel-pg-db
|
||||||
|
|
||||||
|
LOGIN: TrezOne
|
||||||
|
PASSWORD: ${DBGATE_LOGIN_PASSWORD}
|
||||||
|
|
||||||
LABEL_mariadb: mariadb
|
LABEL_mariadb: mariadb
|
||||||
SERVER_mariadb: mariadb
|
SERVER_mariadb: mariadb
|
||||||
USER_mariadb: root
|
USER_mariadb: root
|
||||||
@@ -1621,7 +1624,7 @@ services:
|
|||||||
command: run --disable-reporting=true --stability.level=public-preview --server.http.listen-addr=0.0.0.0:12345 /etc/alloy/config.alloy
|
command: run --disable-reporting=true --stability.level=public-preview --server.http.listen-addr=0.0.0.0:12345 /etc/alloy/config.alloy
|
||||||
container_name: grafana-alloy
|
container_name: grafana-alloy
|
||||||
environment:
|
environment:
|
||||||
- DOCKER_HOST=tcp://dockerproxy:2375
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
image: grafana/alloy:latest
|
image: grafana/alloy:latest
|
||||||
labels:
|
labels:
|
||||||
homepage.group: Infrastructure/App Performance Monitoring
|
homepage.group: Infrastructure/App Performance Monitoring
|
||||||
@@ -2865,8 +2868,8 @@ services:
|
|||||||
lidarr:
|
lidarr:
|
||||||
container_name: lidarr
|
container_name: lidarr
|
||||||
environment:
|
environment:
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: America/New_York
|
||||||
DOCKER_MODS: ghcr.io/gilbn/theme.park:lidarr
|
DOCKER_MODS: ghcr.io/gilbn/theme.park:lidarr
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
@@ -3268,7 +3271,17 @@ services:
|
|||||||
create_host_path: true
|
create_host_path: true
|
||||||
mongodb:
|
mongodb:
|
||||||
container_name: mongodb
|
container_name: mongodb
|
||||||
image: mongo:7.0
|
environment:
|
||||||
|
MONGODB_ADVERTISED_HOSTNAME: mongodb
|
||||||
|
MONGODB_ENABLE_DIRECTORY_PER_DB: true
|
||||||
|
MONGODB_SYSTEM_LOG_VERBOSITY: 1
|
||||||
|
MONGODB_ROOT_USER: ${MONGO_INITDB_ROOT_USERNAME}
|
||||||
|
MONGODB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
|
||||||
|
ALLOW_EMPTY_PASSWORD: yes
|
||||||
|
MONGODB_REPLICA_SET_MODE: primary
|
||||||
|
MONGODB_REPLICA_SET_NAME: rinoa
|
||||||
|
MONGODB_REPLICA_SET_KEY:
|
||||||
|
image: bitnami/mongodb:7.0
|
||||||
ports:
|
ports:
|
||||||
- 27017:27017
|
- 27017:27017
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
@@ -3579,9 +3592,9 @@ services:
|
|||||||
required: true
|
required: true
|
||||||
restart: true
|
restart: true
|
||||||
environment:
|
environment:
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: ${TZ}
|
||||||
LOG_LEVEL: debug
|
LOG_LEVEL: debug
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
image: lscr.io/linuxserver/nextcloud:latest
|
image: lscr.io/linuxserver/nextcloud:latest
|
||||||
@@ -3628,8 +3641,6 @@ services:
|
|||||||
type: bind
|
type: bind
|
||||||
ollama:
|
ollama:
|
||||||
container_name: ollama
|
container_name: ollama
|
||||||
extra_hosts:
|
|
||||||
- host.docker.internal:host-gateway
|
|
||||||
image: ollama/ollama
|
image: ollama/ollama
|
||||||
networks:
|
networks:
|
||||||
default: null
|
default: null
|
||||||
@@ -3647,8 +3658,8 @@ services:
|
|||||||
ombi:
|
ombi:
|
||||||
container_name: ombi
|
container_name: ombi
|
||||||
environment:
|
environment:
|
||||||
PGID: "1000"
|
PGID: ${PGID}
|
||||||
PUID: "1000"
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: America/New_York
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
image: lscr.io/linuxserver/ombi:latest
|
image: lscr.io/linuxserver/ombi:latest
|
||||||
@@ -3871,6 +3882,34 @@ services:
|
|||||||
- plausible-event-logs:/var/log/clickhouse-server
|
- plausible-event-logs:/var/log/clickhouse-server
|
||||||
- ${DOCKER_VOLUME_CONFIG}/plausible/clickhouse/clickhouse-config.xml:/etc/clickhouse-server/config.d/logging.xml:ro
|
- ${DOCKER_VOLUME_CONFIG}/plausible/clickhouse/clickhouse-config.xml:/etc/clickhouse-server/config.d/logging.xml:ro
|
||||||
- ${DOCKER_VOLUME_CONFIG}/plausible/clickhouse/clickhouse-user-config.xml:/etc/clickhouse-server/users.d/logging.xml:ro
|
- ${DOCKER_VOLUME_CONFIG}/plausible/clickhouse/clickhouse-user-config.xml:/etc/clickhouse-server/users.d/logging.xml:ro
|
||||||
|
portainer:
|
||||||
|
command: -H tcp://dockerproxy:2375
|
||||||
|
container_name: portainer
|
||||||
|
depends_on:
|
||||||
|
docker-socket-proxy:
|
||||||
|
condition: service_started
|
||||||
|
required: true
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
|
expose:
|
||||||
|
- 9000
|
||||||
|
- 9443
|
||||||
|
image: portainer/portainer-ce:alpine-sts
|
||||||
|
labels:
|
||||||
|
swag: enable
|
||||||
|
swag_proto: http
|
||||||
|
swag_port: 9000
|
||||||
|
swag_url: portainer.${MY_TLD}
|
||||||
|
swag.uptime-kuma.enabled: true
|
||||||
|
swag.uptime-kuma.monitor.url: https://portainer.${MY_TLD}
|
||||||
|
homepage.group: System Administration
|
||||||
|
homepage.name: Portainer
|
||||||
|
homepage.href: https://portainer.${MY_TLD}
|
||||||
|
homepage.icon: portainer.svg
|
||||||
|
homepage.description: Service delivery platform for containerized applications
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- portainer-data:/data
|
||||||
postal-smtp:
|
postal-smtp:
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_BIND_SERVICE
|
- NET_BIND_SERVICE
|
||||||
@@ -3940,8 +3979,8 @@ services:
|
|||||||
prowlarr:
|
prowlarr:
|
||||||
container_name: prowlarr
|
container_name: prowlarr
|
||||||
environment:
|
environment:
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: America/New_York
|
||||||
DOCKER_MODS: ghcr.io/gilbn/theme.park:sonarr
|
DOCKER_MODS: ghcr.io/gilbn/theme.park:sonarr
|
||||||
TP_DOMAIN: trez.wtf\/themepark
|
TP_DOMAIN: trez.wtf\/themepark
|
||||||
@@ -4042,9 +4081,9 @@ services:
|
|||||||
radarr:
|
radarr:
|
||||||
container_name: radarr
|
container_name: radarr
|
||||||
environment:
|
environment:
|
||||||
PGID: "1000"
|
PGID: ${PGID}
|
||||||
PUID: "1000"
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: ${TZ}
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
image: lscr.io/linuxserver/radarr:latest
|
image: lscr.io/linuxserver/radarr:latest
|
||||||
labels:
|
labels:
|
||||||
@@ -4155,8 +4194,8 @@ services:
|
|||||||
readarr:
|
readarr:
|
||||||
container_name: readarr
|
container_name: readarr
|
||||||
environment:
|
environment:
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: America/New_York
|
||||||
DOCKER_MODS: ghcr.io/gilbn/theme.park:readnarr
|
DOCKER_MODS: ghcr.io/gilbn/theme.park:readnarr
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
@@ -4369,15 +4408,13 @@ services:
|
|||||||
LOG_LEVEL: DEBUG
|
LOG_LEVEL: DEBUG
|
||||||
OLLAMA_URL: http://ollama:11434
|
OLLAMA_URL: http://ollama:11434
|
||||||
OLLAMA_MODEL: phi3
|
OLLAMA_MODEL: phi3
|
||||||
MONGODB_URI: mongodb://host.docker.internal:27017,host.docker.internal:27018,host.docker.internal:27019/scrapper
|
MONGODB_URI: mongodb://mongodb:27017/scrapper
|
||||||
SECRET_KEY: ${SCRAPERR_SECRET_KEY}
|
SECRET_KEY: ${SCRAPERR_SECRET_KEY}
|
||||||
ALGORITHM: HS256
|
ALGORITHM: HS256
|
||||||
ACCESS_TOKEN_EXPIRE_MINUTES: 600
|
ACCESS_TOKEN_EXPIRE_MINUTES: 600
|
||||||
DOCKER_HOST: tcp://dockerproxy:2375
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
expose:
|
expose:
|
||||||
- 8000
|
- 8000
|
||||||
extra_hosts:
|
|
||||||
- host.docker.internal:host-gateway
|
|
||||||
image: jpyles0524/scraperr_api:latest
|
image: jpyles0524/scraperr_api:latest
|
||||||
labels:
|
labels:
|
||||||
swag: enable
|
swag: enable
|
||||||
@@ -4599,7 +4636,7 @@ services:
|
|||||||
read_only: true
|
read_only: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
sonarqube-pg-db:
|
sonarqube-pg-db:
|
||||||
container_name: sonarqube-pg-db
|
container_name: sonarqube-pg-db
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: sonar
|
POSTGRES_USER: sonar
|
||||||
POSTGRES_PASSWORD: ${SONARQUBE_POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${SONARQUBE_POSTGRES_PASSWORD}
|
||||||
@@ -4617,9 +4654,9 @@ services:
|
|||||||
sonarr:
|
sonarr:
|
||||||
container_name: sonarr
|
container_name: sonarr
|
||||||
environment:
|
environment:
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: ${TZ}
|
||||||
DOCKER_MODS: ghcr.io/gilbn/theme.park:sonarr
|
DOCKER_MODS: ghcr.io/gilbn/theme.park:sonarr
|
||||||
hostname: Rinoa
|
hostname: Rinoa
|
||||||
image: lscr.io/linuxserver/sonarr:latest
|
image: lscr.io/linuxserver/sonarr:latest
|
||||||
@@ -4749,7 +4786,7 @@ services:
|
|||||||
homepage.group: Downloaders
|
homepage.group: Downloaders
|
||||||
homepage.description: Modern client-server application for the Soulseek file-sharing network.
|
homepage.description: Modern client-server application for the Soulseek file-sharing network.
|
||||||
homepage.href: https://slsk.${MY_TLD}
|
homepage.href: https://slsk.${MY_TLD}
|
||||||
homepage.icon: /icons/slskd.png
|
homepage.icon: slskd.svg
|
||||||
swag: enable
|
swag: enable
|
||||||
swag_proto: http
|
swag_proto: http
|
||||||
swag_url: slsk.${MY_TLD}
|
swag_url: slsk.${MY_TLD}
|
||||||
@@ -4783,6 +4820,7 @@ services:
|
|||||||
homepage.icon: /icons/sourcebot.png
|
homepage.icon: /icons/sourcebot.png
|
||||||
swag: enable
|
swag: enable
|
||||||
swag_proto: http
|
swag_proto: http
|
||||||
|
swag_port: 3000
|
||||||
swag_url: source.${MY_TLD}
|
swag_url: source.${MY_TLD}
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
swag.uptime-kuma.monitor.url: https://source.${MY_TLD}
|
swag.uptime-kuma.monitor.url: https://source.${MY_TLD}
|
||||||
@@ -4932,7 +4970,7 @@ services:
|
|||||||
swag_url: matrix.${MY_TLD}
|
swag_url: matrix.${MY_TLD}
|
||||||
swag_port: 8008
|
swag_port: 8008
|
||||||
swag.uptime-kuma.enabled: true
|
swag.uptime-kuma.enabled: true
|
||||||
swag.uptime-kuma.monitor.url: https://matrix.${MY_TLD}
|
swag.uptime-kuma.monitor.url: https://matrix.${MY_TLD}
|
||||||
ports:
|
ports:
|
||||||
- 19345:8008
|
- 19345:8008
|
||||||
- 8448:8448/tcp
|
- 8448:8448/tcp
|
||||||
@@ -6322,8 +6360,8 @@ services:
|
|||||||
uptimekuma:
|
uptimekuma:
|
||||||
container_name: uptimekuma
|
container_name: uptimekuma
|
||||||
environment:
|
environment:
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: America/New_York
|
||||||
UPTIME_KUMA_USERNAME: ${UPTIME_KUMA_USERNAME}
|
UPTIME_KUMA_USERNAME: ${UPTIME_KUMA_USERNAME}
|
||||||
UPTIME_KUMA_PASSWORD: ${UPTIME_KUMA_PASSWORD}
|
UPTIME_KUMA_PASSWORD: ${UPTIME_KUMA_PASSWORD}
|
||||||
@@ -6629,7 +6667,7 @@ services:
|
|||||||
wazuh.indexer:
|
wazuh.indexer:
|
||||||
container_name: wazuh.indexer
|
container_name: wazuh.indexer
|
||||||
environment:
|
environment:
|
||||||
- OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m
|
OPENSEARCH_JAVA_OPTS: -Xms512m -Xmx512m
|
||||||
hostname: wazuh.indexer
|
hostname: wazuh.indexer
|
||||||
image: wazuh/wazuh-indexer:${WAZUH_VERSION}
|
image: wazuh/wazuh-indexer:${WAZUH_VERSION}
|
||||||
networks:
|
networks:
|
||||||
@@ -6845,19 +6883,17 @@ services:
|
|||||||
your_spotify:
|
your_spotify:
|
||||||
container_name: your_spotify
|
container_name: your_spotify
|
||||||
environment:
|
environment:
|
||||||
PUID: 1000
|
PUID: ${PUID}
|
||||||
PGID: 1000
|
PGID: ${PGID}
|
||||||
TZ: ${TZ}
|
TZ: ${TZ}
|
||||||
APP_URL: https://myspotify.${MY_TLD}
|
APP_URL: https://myspotify.${MY_TLD}
|
||||||
SPOTIFY_PUBLIC: ${YOUR_SPOTIFY_ID}
|
SPOTIFY_PUBLIC: ${YOUR_SPOTIFY_ID}
|
||||||
SPOTIFY_SECRET: ${YOUR_SPOTIFY_SECRET}
|
SPOTIFY_SECRET: ${YOUR_SPOTIFY_SECRET}
|
||||||
CORS: all
|
CORS: all
|
||||||
MONGO_ENDPOINT: mongodb://host.docker.internal:27017,host.docker.internal:27018,host.docker.internal:27019/your_spotify
|
MONGO_ENDPOINT: mongodb://mongodb:27017/your_spotify
|
||||||
LOG_LEVEL: debug
|
LOG_LEVEL: debug
|
||||||
expose:
|
expose:
|
||||||
- 8080
|
- 8080
|
||||||
extra_hosts:
|
|
||||||
- host.docker.internal:host-gateway
|
|
||||||
image: lscr.io/linuxserver/your_spotify:latest
|
image: lscr.io/linuxserver/your_spotify:latest
|
||||||
labels:
|
labels:
|
||||||
homepage.group: Media Library
|
homepage.group: Media Library
|
||||||
@@ -6879,8 +6915,8 @@ services:
|
|||||||
youtubedl:
|
youtubedl:
|
||||||
container_name: youtubedl
|
container_name: youtubedl
|
||||||
environment:
|
environment:
|
||||||
PGID: "1000"
|
PGID: ${PGID}
|
||||||
PUID: "1000"
|
PUID: ${PUID}
|
||||||
TZ: America/New_York
|
TZ: America/New_York
|
||||||
YDL_CONFIG_PATH: /youtube-dl/config.yml
|
YDL_CONFIG_PATH: /youtube-dl/config.yml
|
||||||
YDL_DEBUG: "false"
|
YDL_DEBUG: "false"
|
||||||
@@ -7385,9 +7421,9 @@ volumes:
|
|||||||
mastodon-pg-db:
|
mastodon-pg-db:
|
||||||
name: mastodon-pg-db
|
name: mastodon-pg-db
|
||||||
mongodb_config:
|
mongodb_config:
|
||||||
name: mongo1_config
|
name: mongodb_config
|
||||||
mongodb_data:
|
mongodb_data:
|
||||||
name: mongo1_data
|
name: mongodb_data
|
||||||
n8n-data:
|
n8n-data:
|
||||||
name: n8n-data
|
name: n8n-data
|
||||||
netbird-mgmt:
|
netbird-mgmt:
|
||||||
@@ -7414,6 +7450,8 @@ volumes:
|
|||||||
name: plausible-event-data
|
name: plausible-event-data
|
||||||
plausible-event-logs:
|
plausible-event-logs:
|
||||||
name: plausible-event-logs
|
name: plausible-event-logs
|
||||||
|
portainer-data:
|
||||||
|
name: portainer-data
|
||||||
reactive-resume-pg:
|
reactive-resume-pg:
|
||||||
name: reactive-resume-pg
|
name: reactive-resume-pg
|
||||||
sonarqube-data:
|
sonarqube-data:
|
||||||
|
|||||||
Reference in New Issue
Block a user