[Komodo] Commit Sync: update master_sync.toml
This commit is contained in:
+31
-218
@@ -46,9 +46,6 @@ server = "Unraid"
|
|||||||
auto_pull = false
|
auto_pull = false
|
||||||
linked_repo = "compose-grimmory"
|
linked_repo = "compose-grimmory"
|
||||||
env_file_path = "grimmory.env"
|
env_file_path = "grimmory.env"
|
||||||
additional_env_files = [
|
|
||||||
{ path = "grimmory.env", track = true }
|
|
||||||
]
|
|
||||||
environment = """
|
environment = """
|
||||||
# Application
|
# Application
|
||||||
APP_USER_ID=1000
|
APP_USER_ID=1000
|
||||||
@@ -56,7 +53,7 @@ APP_GROUP_ID=1000
|
|||||||
TZ=Etc/UTC
|
TZ=Etc/UTC
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
DATABASE_URL=jdbc:mariadb://mariadb:3306/grimmory
|
DATABASE_URL=jdbc:mariadb://grimmory-mariadb:3306/grimmory
|
||||||
DB_USER=grimmory
|
DB_USER=grimmory
|
||||||
DB_PASSWORD=ChangeMe_Grimmory_2025!
|
DB_PASSWORD=ChangeMe_Grimmory_2025!
|
||||||
|
|
||||||
@@ -82,81 +79,8 @@ tags = ["Active"]
|
|||||||
server = "Unraid"
|
server = "Unraid"
|
||||||
poll_for_updates = true
|
poll_for_updates = true
|
||||||
auto_update = true
|
auto_update = true
|
||||||
|
linked_repo = "compose-homeassistant_io"
|
||||||
env_file_path = "HA.env"
|
env_file_path = "HA.env"
|
||||||
file_contents = """
|
|
||||||
services:
|
|
||||||
homeassistant:
|
|
||||||
image: ghcr.io/home-assistant/home-assistant:stable
|
|
||||||
container_name: homeassistant
|
|
||||||
restart: unless-stopped
|
|
||||||
privileged: true
|
|
||||||
network_mode: host
|
|
||||||
volumes:
|
|
||||||
- /mnt/user/docker/homeassistant_io/ha_config:/config
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
depends_on:
|
|
||||||
- mosquitto
|
|
||||||
- influxdb
|
|
||||||
labels:
|
|
||||||
- traefik.enable=true
|
|
||||||
- traefik.http.routers.HomeAssistant.rule=Host(`homeassistant.andrewamason.tech`)
|
|
||||||
- traefik.http.routers.HomeAssistant.entrypoints=https,http
|
|
||||||
- traefik.http.routers.HomeAssistant.tls=true
|
|
||||||
- traefik.http.routers.HomeAssistant.tls.certresolver=letsencrypt
|
|
||||||
- traefik.http.routers.HomeAssistant.middlewares=https_redirect
|
|
||||||
- traefik.http.services.HomeAssistant.loadbalancer.healthcheck.followredirects=true
|
|
||||||
- traefik.http.services.HomeAssistant.loadbalancer.healthcheck.path=/
|
|
||||||
- traefik.http.services.HomeAssistant.loadbalancer.passhostheader=true
|
|
||||||
- traefik.http.services.HomeAssistant.loadbalancer..server.url=http://172.24.3.12:8123
|
|
||||||
- net.Unraid_New.docker.icon=/mnt/user/docker/icons/home-assistant.png
|
|
||||||
- homepage.group=Monitoring
|
|
||||||
- homepage.name=Home Assistant
|
|
||||||
- homepage.icon=homeassistant.png
|
|
||||||
- homepage.href=http://172.24.3.12:8123
|
|
||||||
- homepage.description=homeassistant
|
|
||||||
- homepage.widget.type=changedetectionio
|
|
||||||
- homepage.widget.url=http://172.24.3.12:8123
|
|
||||||
- homepage.widget.key=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJmNDIxYzJiMGM0YjA0NGI3ODQ2ODA0NDlhZmVjNTExYSIsImlhdCI6MTc3NDc0ODQ1NywiZXhwIjoyMDkwMTA4NDU3fQ.0XPkdXD0CacyWpfQa5NB2Qtxin5taCM0LyS0kjPlKQg
|
|
||||||
mosquitto:
|
|
||||||
image: eclipse-mosquitto:latest
|
|
||||||
container_name: mosquitto
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "${MQTT_PORT:-1883}:1883"
|
|
||||||
- "9001:9001"
|
|
||||||
volumes:
|
|
||||||
- /mnt/user/docker/homeassistant_io/mosquitto_data:/mosquitto/data
|
|
||||||
networks:
|
|
||||||
- ha-network
|
|
||||||
labels:
|
|
||||||
- net.Unraid_New.docker.icon=/mnt/user/docker/icons/mosquitto.png
|
|
||||||
- traefik.enable=false
|
|
||||||
|
|
||||||
influxdb:
|
|
||||||
image: influxdb:2.7
|
|
||||||
container_name: influxdb
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "${INFLUX_PORT:-8086}:8086"
|
|
||||||
environment:
|
|
||||||
- DOCKER_INFLUXDB_INIT_MODE=setup
|
|
||||||
- DOCKER_INFLUXDB_INIT_USERNAME=${INFLUX_USER:-admin}
|
|
||||||
- DOCKER_INFLUXDB_INIT_PASSWORD=${INFLUX_PASSWORD:-adminpassword}
|
|
||||||
- DOCKER_INFLUXDB_INIT_ORG=${INFLUX_ORG:-home}
|
|
||||||
- DOCKER_INFLUXDB_INIT_BUCKET=${INFLUX_BUCKET:-homeassistant}
|
|
||||||
volumes:
|
|
||||||
- /mnt/user/docker/homeassistant_io/influxdb_data:/var/lib/influxdb2
|
|
||||||
networks:
|
|
||||||
- ha-network
|
|
||||||
labels:
|
|
||||||
- net.Unraid_New.docker.icon=/mnt/user/docker/icons/influxdb.png
|
|
||||||
- traefik.enable=false
|
|
||||||
|
|
||||||
networks:
|
|
||||||
ha-network:
|
|
||||||
name: Internal_Network
|
|
||||||
external: true
|
|
||||||
"""
|
|
||||||
environment = """
|
environment = """
|
||||||
# Home Assistant Full Stack
|
# Home Assistant Full Stack
|
||||||
MQTT_PORT=1883
|
MQTT_PORT=1883
|
||||||
@@ -326,17 +250,6 @@ webhook_secret = "Spotting-Drainpipe-Freely-Outwit-Opponent7"
|
|||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
[[stack]]
|
|
||||||
name = "rustdesk"
|
|
||||||
tags = ["Decom"]
|
|
||||||
[stack.config]
|
|
||||||
server = "Unraid"
|
|
||||||
auto_update = true
|
|
||||||
linked_repo = "compose-rustdesk"
|
|
||||||
webhook_secret = "Spotting-Drainpipe-Freely-Outwit-Opponent7"
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[stack]]
|
[[stack]]
|
||||||
name = "servarr"
|
name = "servarr"
|
||||||
tags = ["As_Needed"]
|
tags = ["As_Needed"]
|
||||||
@@ -401,40 +314,7 @@ tags = ["Active"]
|
|||||||
[stack.config]
|
[stack.config]
|
||||||
server = "Unraid"
|
server = "Unraid"
|
||||||
auto_update = true
|
auto_update = true
|
||||||
file_contents = """
|
linked_repo = "compose-wallos"
|
||||||
networks:
|
|
||||||
Internal:
|
|
||||||
name: Internal_Network
|
|
||||||
external: true
|
|
||||||
|
|
||||||
services:
|
|
||||||
wallos:
|
|
||||||
container_name: wallos
|
|
||||||
image: bellamy/wallos:latest
|
|
||||||
expose:
|
|
||||||
- 80
|
|
||||||
environment:
|
|
||||||
- TZ=America\New_York
|
|
||||||
- PGID=65536
|
|
||||||
- PUID=1031
|
|
||||||
volumes:
|
|
||||||
- /mnt/user/docker/wallos/db:/var/www/html/db
|
|
||||||
- /mnt/user/docker/wallos/logos:/var/www/html/images/uploads/logos
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
- Internal
|
|
||||||
labels:
|
|
||||||
- traefik.enable=false
|
|
||||||
- homepage.group=Monitoring
|
|
||||||
- homepage.name=WallOS
|
|
||||||
- net.Unraid_New.docker.icon=/mnt/user/docker/icons/wallos.png
|
|
||||||
- homepage.icon=wallos.png
|
|
||||||
- homepage.href=https://wallos.andrewamason.tech
|
|
||||||
- homepage.description=Personal Subscription Tracker
|
|
||||||
- homepage.widget.type=wallos
|
|
||||||
- homepage.widget.url=http://wallos:80
|
|
||||||
- homepage.widget.key=2995ba5f3584b8a3e588a92de459ded93177df6d6576a6cb50fea3ee5666d97e
|
|
||||||
"""
|
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
@@ -459,82 +339,13 @@ TZ=America\New_York
|
|||||||
##
|
##
|
||||||
|
|
||||||
[[build]]
|
[[build]]
|
||||||
name = "audiobookshelf"
|
name = "grimmory"
|
||||||
[build.config]
|
[build.config]
|
||||||
builder = "local"
|
builder = "local"
|
||||||
|
git_account = "andrewamason"
|
||||||
|
repo = "grimmory-tools/grimmory"
|
||||||
image_registry = [
|
image_registry = [
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
{ domain = "gitea.andrewamason.tech", account = "andrewamason", organization = "docker" }
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "cloudflare-ddns"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "dashy"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "flaresolverr"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "freshrss"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
dockerfile_path = "Docker/Dockerfile"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "glance"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "heimdall"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[build]]
|
|
||||||
name = "homebox"
|
|
||||||
[build.config]
|
|
||||||
builder = "local"
|
|
||||||
image_registry = [
|
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
|
||||||
]
|
]
|
||||||
|
|
||||||
##
|
##
|
||||||
@@ -557,7 +368,7 @@ name = "swag"
|
|||||||
builder = "local"
|
builder = "local"
|
||||||
linked_repo = "swag"
|
linked_repo = "swag"
|
||||||
image_registry = [
|
image_registry = [
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
{ domain = "gitea.andrewamason.tech", account = "andrewamason", organization = "docker" }
|
||||||
]
|
]
|
||||||
|
|
||||||
##
|
##
|
||||||
@@ -568,7 +379,7 @@ name = "web-check"
|
|||||||
builder = "local"
|
builder = "local"
|
||||||
linked_repo = "web-check"
|
linked_repo = "web-check"
|
||||||
image_registry = [
|
image_registry = [
|
||||||
{ domain = "gitea:3000", account = "andrewamason", organization = "docker" }
|
{ domain = "gitea.andrewamason.tech", account = "andrewamason", organization = "docker" }
|
||||||
]
|
]
|
||||||
|
|
||||||
##
|
##
|
||||||
@@ -647,6 +458,17 @@ repo = "HomeLab/grimmory"
|
|||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
|
[[repo]]
|
||||||
|
name = "compose-homeassistant_io"
|
||||||
|
[repo.config]
|
||||||
|
server = "Unraid"
|
||||||
|
git_provider = "gitea:3000"
|
||||||
|
git_https = false
|
||||||
|
git_account = "andrewamason"
|
||||||
|
repo = "HomeLab/HomeAssistant"
|
||||||
|
|
||||||
|
##
|
||||||
|
|
||||||
[[repo]]
|
[[repo]]
|
||||||
name = "compose-homebox"
|
name = "compose-homebox"
|
||||||
[repo.config]
|
[repo.config]
|
||||||
@@ -719,26 +541,6 @@ repo = "HomeLab/Media-Streaming"
|
|||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
[[repo]]
|
|
||||||
name = "compose-karakeep"
|
|
||||||
[repo.config]
|
|
||||||
server = "Unraid"
|
|
||||||
git_provider = "gitea:3000"
|
|
||||||
git_account = "andrewamason"
|
|
||||||
repo = "HomeLab/karakeep"
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[repo]]
|
|
||||||
name = "compose-freshrss"
|
|
||||||
[repo.config]
|
|
||||||
server = "Unraid"
|
|
||||||
git_provider = "gitea:3000"
|
|
||||||
git_account = "andrewamason"
|
|
||||||
repo = "HomeLab/freshrss"
|
|
||||||
|
|
||||||
##
|
|
||||||
|
|
||||||
[[repo]]
|
[[repo]]
|
||||||
name = "compose-obsidian-sync"
|
name = "compose-obsidian-sync"
|
||||||
[repo.config]
|
[repo.config]
|
||||||
@@ -842,6 +644,17 @@ repo = "HomeLab/uptime-kuma"
|
|||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
|
[[repo]]
|
||||||
|
name = "compose-wallos"
|
||||||
|
[repo.config]
|
||||||
|
server = "Unraid"
|
||||||
|
git_provider = "gitea:3000"
|
||||||
|
git_https = false
|
||||||
|
git_account = "andrewamason"
|
||||||
|
repo = "HomeLab/WallOS"
|
||||||
|
|
||||||
|
##
|
||||||
|
|
||||||
[[repo]]
|
[[repo]]
|
||||||
name = "icloudpd"
|
name = "icloudpd"
|
||||||
[repo.config]
|
[repo.config]
|
||||||
|
|||||||
Reference in New Issue
Block a user