mirror of
https://github.com/MAGICGrants/truenas-apps.git
synced 2026-01-09 20:47:58 -05:00
chore(deps): update updates-patch-minor (#3472)
* chore(deps): update updates-patch-minor * headscale: remove workarounds --------- Co-authored-by: bugclerk <bugclerk@ixsystems.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
app_version: 2.20.5
|
||||
app_version: 2.20.6
|
||||
capabilities:
|
||||
- description: Automatic Ripping Machine is able to change file ownership arbitrarily
|
||||
name: CHOWN
|
||||
@@ -46,4 +46,4 @@ sources:
|
||||
- https://hub.docker.com/r/automaticrippingmachine/automatic-ripping-machine
|
||||
title: Automatic Ripping Machine
|
||||
train: community
|
||||
version: 1.0.36
|
||||
version: 1.0.37
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: automaticrippingmachine/automatic-ripping-machine
|
||||
tag: 2.20.5
|
||||
tag: 2.20.6
|
||||
|
||||
consts:
|
||||
arm_container_name: automatic-ripping-machine
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
app_version: v0.26.1
|
||||
app_version: v0.27.0
|
||||
capabilities: []
|
||||
categories:
|
||||
- networking
|
||||
@@ -30,4 +30,4 @@ sources:
|
||||
- https://github.com/juanfont/headscale
|
||||
title: Headscale
|
||||
train: community
|
||||
version: 1.0.13
|
||||
version: 1.0.14
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
images:
|
||||
image:
|
||||
repository: ghcr.io/juanfont/headscale
|
||||
tag: v0.26.1
|
||||
tag: v0.27.0
|
||||
alpine_image:
|
||||
repository: alpine
|
||||
tag: "3.22.2"
|
||||
|
||||
consts:
|
||||
headscale_container_name: headscale
|
||||
init_container_name: init
|
||||
perms_container_name: permissions
|
||||
run_path: /var/run/headscale
|
||||
lib_path: /var/lib/headscale
|
||||
|
||||
@@ -1,28 +1,16 @@
|
||||
{% set tpl = ix_lib.base.render.Render(values) %}
|
||||
|
||||
{% set c1 = tpl.add_container(values.consts.headscale_container_name, "image") %}
|
||||
{% set init = tpl.add_container(values.consts.init_container_name, "alpine_image") %}
|
||||
{% set perm_container = tpl.deps.perms(values.consts.perms_container_name) %}
|
||||
{% set perms_config = {"uid": values.run_as.user, "gid": values.run_as.group, "mode": "check"} %}
|
||||
|
||||
{# FIXME: remove after https://github.com/juanfont/headscale/pull/2656 #}
|
||||
{% do init.set_user(values.run_as.user, values.run_as.group) %}
|
||||
{% do init.setup_as_helper() %}
|
||||
{# At least an empty config is required. #}
|
||||
{% do init.set_entrypoint(["touch", "%s/config.yaml"|format(values.consts.config_path)]) %}
|
||||
|
||||
{% do c1.set_user(values.run_as.user, values.run_as.group) %}
|
||||
{# FIXME: Uncomment this after https://github.com/juanfont/headscale/pull/2659 #}
|
||||
{# {% do c1.healthcheck.set_custom_test(["CMD", "/ko-app/headscale", "health"]) %} #}
|
||||
{% do c1.healthcheck.disable() %}
|
||||
{% do c1.healthcheck.set_custom_test(["CMD", "/ko-app/headscale", "health"]) %}
|
||||
{% do c1.set_command(["serve"]) %}
|
||||
{% do c1.depends.add_dependency(values.consts.init_container_name, "service_completed_successfully") %}
|
||||
|
||||
{% do c1.environment.add_env("HEADSCALE_LISTEN_ADDR", ":%d"|format(values.network.api_port.port_number)) %}
|
||||
{% do c1.environment.add_env("HEADSCALE_DATABASE_TYPE", "sqlite") %}
|
||||
{% do c1.environment.add_env("HEADSCALE_DATABASE_SQLITE_PATH", "%s/db.sqlite"|format(values.consts.lib_path)) %}
|
||||
{# FIXME: remove after https://github.com/juanfont/headscale/pull/2658 #}
|
||||
{% do c1.environment.add_env("HEADSCALE_NOISE", '{}') %}
|
||||
{% do c1.environment.add_env("HEADSCALE_NOISE_PRIVATE_KEY_PATH", "%s/noise_private.key"|format(values.consts.lib_path)) %}
|
||||
{% do c1.environment.add_env("HEADSCALE_UNIX_SOCKET", "%s/headscale.sock"|format(values.consts.run_path)) %}
|
||||
{% do c1.environment.add_env("HEADSCALE_UNIX_SOCKET_PERMISSION", "0770") %}
|
||||
@@ -50,7 +38,6 @@
|
||||
{% do c1.add_port(values.network.api_port) %}
|
||||
|
||||
{% do c1.add_storage(values.consts.config_path, values.storage.config) %}
|
||||
{% do init.add_storage(values.consts.config_path, values.storage.config) %}
|
||||
{% do perm_container.add_or_skip_action("config", values.storage.config, perms_config) %}
|
||||
|
||||
{% do c1.add_storage(values.consts.lib_path, values.storage.lib) %}
|
||||
@@ -67,7 +54,6 @@
|
||||
{% if perm_container.has_actions() %}
|
||||
{% do perm_container.activate() %}
|
||||
{% do c1.depends.add_dependency(values.consts.perms_container_name, "service_completed_successfully") %}
|
||||
{% do init.depends.add_dependency(values.consts.perms_container_name, "service_completed_successfully") %}
|
||||
{% endif %}
|
||||
|
||||
{{ tpl.render() | tojson }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
app_version: 0.24.191
|
||||
app_version: 0.24.196
|
||||
capabilities: []
|
||||
categories:
|
||||
- media
|
||||
@@ -29,4 +29,4 @@ sources:
|
||||
- https://github.com/home-operations/containers/tree/main/apps/jackett
|
||||
title: Jackett
|
||||
train: community
|
||||
version: 1.0.229
|
||||
version: 1.0.230
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: ghcr.io/home-operations/jackett
|
||||
tag: 0.24.191
|
||||
tag: 0.24.196
|
||||
|
||||
consts:
|
||||
jackett_container_name: jackett
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
annotations:
|
||||
min_scale_version: 24.10.2.2
|
||||
app_version: 10.11.0
|
||||
app_version: 10.11.1
|
||||
capabilities: []
|
||||
categories:
|
||||
- media
|
||||
@@ -39,4 +39,4 @@ sources:
|
||||
- https://jellyfin.org/
|
||||
title: Jellyfin
|
||||
train: community
|
||||
version: 1.2.14
|
||||
version: 1.2.15
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: jellyfin/jellyfin
|
||||
tag: 10.11.0
|
||||
tag: 10.11.1
|
||||
|
||||
consts:
|
||||
jellyfin_container_name: jellyfin
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
annotations:
|
||||
min_scale_version: 24.10.2.2
|
||||
app_version: 2025.10.2-java21
|
||||
app_version: 2025.10.5-java21
|
||||
capabilities:
|
||||
- description: Minecraft is able to change file ownership arbitrarily
|
||||
name: CHOWN
|
||||
@@ -49,4 +49,4 @@ sources:
|
||||
- https://github.com/itzg/docker-minecraft-server
|
||||
title: Minecraft Server (Java)
|
||||
train: community
|
||||
version: 1.13.21
|
||||
version: 1.13.22
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
images:
|
||||
j8_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java8
|
||||
tag: 2025.10.5-java8
|
||||
j8_gce_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java8-graalvm-ce
|
||||
tag: 2025.10.5-java8-graalvm-ce
|
||||
j8_j9_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java8-openj9
|
||||
tag: 2025.10.5-java8-openj9
|
||||
j8_jdk_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java8-jdk
|
||||
tag: 2025.10.5-java8-jdk
|
||||
j11_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java11
|
||||
tag: 2025.10.5-java11
|
||||
j11_j9_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2024.2.2-java11-openj9
|
||||
@@ -22,7 +22,7 @@ images:
|
||||
tag: 2024.4.0-java11-jdk
|
||||
j17_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java17
|
||||
tag: 2025.10.5-java17
|
||||
j17_j9_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2024.2.2-java17-openj9
|
||||
@@ -34,18 +34,18 @@ images:
|
||||
tag: 2023.9.1-java17-graalvm-ce
|
||||
j17_alpine_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java17-alpine
|
||||
tag: 2025.10.5-java17-alpine
|
||||
j19_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2023.3.0-java19
|
||||
image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java21
|
||||
tag: 2025.10.5-java21
|
||||
j21_g_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java21-graalvm
|
||||
tag: 2025.10.5-java21-graalvm
|
||||
j21_alpine_image:
|
||||
repository: itzg/minecraft-server
|
||||
tag: 2025.10.2-java21-alpine
|
||||
tag: 2025.10.5-java21-alpine
|
||||
consts:
|
||||
minecraft_container_name: minecraft
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
annotations:
|
||||
min_scale_version: 24.10.2.2
|
||||
app_version: 6.0.2.10271
|
||||
app_version: 6.0.3.10276
|
||||
capabilities: []
|
||||
categories:
|
||||
- media
|
||||
@@ -36,4 +36,4 @@ sources:
|
||||
- https://github.com/Radarr/Radarr
|
||||
title: Radarr
|
||||
train: community
|
||||
version: 1.3.24
|
||||
version: 1.3.25
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: ghcr.io/home-operations/radarr
|
||||
tag: 6.0.2.10271
|
||||
tag: 6.0.3.10276
|
||||
|
||||
consts:
|
||||
radarr_container_name: radarr
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
annotations:
|
||||
min_scale_version: 24.10.2.2
|
||||
app_version: 2025.10.26-22e1d3001
|
||||
app_version: 2025.10.27-ea4a55fa5
|
||||
capabilities:
|
||||
- description: SearXNG is able to change group ID of processes
|
||||
name: SETGID
|
||||
@@ -40,4 +40,4 @@ sources:
|
||||
- https://github.com/searxng/searxng
|
||||
title: SearXNG
|
||||
train: community
|
||||
version: 1.2.81
|
||||
version: 1.2.82
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: searxng/searxng
|
||||
tag: 2025.10.26-22e1d3001
|
||||
tag: 2025.10.27-ea4a55fa5
|
||||
redis_image:
|
||||
repository: valkey/valkey
|
||||
tag: 9.0.0
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
app_version: 1.30.3
|
||||
app_version: 1.30.4
|
||||
capabilities: []
|
||||
categories:
|
||||
- monitoring
|
||||
@@ -43,4 +43,4 @@ sources:
|
||||
- https://github.com/msgbyte/tianji
|
||||
title: Tianji
|
||||
train: community
|
||||
version: 1.0.110
|
||||
version: 1.0.111
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: ghcr.io/msgbyte/tianji
|
||||
tag: 1.30.3
|
||||
tag: 1.30.4
|
||||
postgres_17_image:
|
||||
repository: postgres
|
||||
tag: 17.6-bookworm
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
app_version: v2025.10.6
|
||||
app_version: v2025.10.7
|
||||
capabilities: []
|
||||
categories:
|
||||
- media
|
||||
@@ -31,4 +31,4 @@ sources:
|
||||
- https://github.com/wizarrrr/wizarr
|
||||
title: Wizarr
|
||||
train: community
|
||||
version: 1.0.21
|
||||
version: 1.0.22
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: ghcr.io/wizarrrr/wizarr
|
||||
tag: v2025.10.6
|
||||
tag: v2025.10.7
|
||||
|
||||
consts:
|
||||
wizarr_container_name: wizarr
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
annotations:
|
||||
min_scale_version: 24.10.2.2
|
||||
app_version: 2025.10.0
|
||||
app_version: 2025.10.1
|
||||
capabilities:
|
||||
- description: Pi-hole is able to change file ownership arbitrarily
|
||||
name: CHOWN
|
||||
@@ -59,4 +59,4 @@ sources:
|
||||
- https://github.com/pi-hole/docker-pi-hole
|
||||
title: Pi-hole
|
||||
train: stable
|
||||
version: 1.3.18
|
||||
version: 1.3.19
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
images:
|
||||
image:
|
||||
repository: pihole/pihole
|
||||
tag: 2025.10.0
|
||||
tag: 2025.10.1
|
||||
|
||||
consts:
|
||||
pihole_container_name: pihole
|
||||
|
||||
Reference in New Issue
Block a user