From 38e50365eda82af48b8e6f7552c8d3c4e55842a8 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 11:29:44 +0100 Subject: [PATCH 01/13] added immich codenotary --- immich/build.yaml | 4 +++- immich/config.yaml | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/immich/build.yaml b/immich/build.yaml index 503c4de..c56eb59 100644 --- a/immich/build.yaml +++ b/immich/build.yaml @@ -1,3 +1,5 @@ build_from: aarch64: ghcr.io/imagegenius/immich:1.124.2 - amd64: ghcr.io/imagegenius/immich:1.124.2 \ No newline at end of file + amd64: ghcr.io/imagegenius/immich:1.124.2 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/immich/config.yaml b/immich/config.yaml index 8f20dad..b5ef486 100644 --- a/immich/config.yaml +++ b/immich/config.yaml @@ -1,6 +1,7 @@ name: Immich -version: "1.124.2-v0" +version: "1.124.2-v1" slug: immich +codenotary: info@fabiogaravini.dev description: High performance self-hosted photo and video management solution url: https://immich.app webui: http://[HOST]:[PORT:8080] From dcc9c52e2d6537c0e2e53d056bf6849b9f34d584 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 11:42:06 +0100 Subject: [PATCH 02/13] added cloudflared codenotary --- cloudflared/Dockerfile | 5 +++-- cloudflared/build.yaml | 5 +++++ cloudflared/config.yaml | 3 ++- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 cloudflared/build.yaml diff --git a/cloudflared/Dockerfile b/cloudflared/Dockerfile index 57a8cae..b7b20ed 100644 --- a/cloudflared/Dockerfile +++ b/cloudflared/Dockerfile @@ -1,5 +1,6 @@ -ARG BUILD_VERSION -FROM cloudflare/cloudflared:${BUILD_VERSION} +ARG BUILD_FROM + +FROM ${BUILD_FROM} COPY --from=busybox:1.37-uclibc /bin/sh /bin/mv /bin/cat /bin/find /bin/head /bin/basename /bin/xargs /bin/ diff --git a/cloudflared/build.yaml b/cloudflared/build.yaml new file mode 100644 index 0000000..895e0ee --- /dev/null +++ b/cloudflared/build.yaml @@ -0,0 +1,5 @@ +build_from: + aarch64: cloudflare/cloudflared:2025.1.0 + amd64: cloudflare/cloudflared:2025.1.0 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/cloudflared/config.yaml b/cloudflared/config.yaml index 378d658..e6f1737 100644 --- a/cloudflared/config.yaml +++ b/cloudflared/config.yaml @@ -1,6 +1,7 @@ name: Cloudflared -version: "2025.1.0" +version: "2025.1.0-v0" slug: cloudflared +codenotary: info@fabiogaravini.dev description: Cloudflare tunneling and Zero Trust service arch: - aarch64 From a4c784ae58436e0547d8cd2b20dfc2bc2ddc264d Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 11:48:47 +0100 Subject: [PATCH 03/13] added gitea codenotary --- gitea/Dockerfile | 32 +++++++++++++++++++++++++++++--- gitea/build.yaml | 6 ++++-- gitea/config.yaml | 3 ++- 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/gitea/Dockerfile b/gitea/Dockerfile index d39cfbc..b5ce639 100644 --- a/gitea/Dockerfile +++ b/gitea/Dockerfile @@ -1,7 +1,6 @@ ARG BUILD_FROM -ARG BUILD_VERSION -FROM $BUILD_FROM:$BUILD_VERSION +FROM $BUILD_FROM ENV GITEA_WORK_DIR=/data @@ -10,4 +9,31 @@ RUN apk --no-cache add \ jq; \ rm -rf /var/cache/apk/* -COPY rootfs/ / \ No newline at end of file +COPY rootfs/ / + +ARG BUILD_VERSION +ARG BUILD_ARCH +ARG BUILD_DATE +ARG BUILD_DESCRIPTION +ARG BUILD_NAME +ARG BUILD_REF +ARG BUILD_REPOSITORY + +LABEL \ + io.hass.name="${BUILD_NAME}" \ + io.hass.description="${BUILD_DESCRIPTION}" \ + io.hass.arch="${BUILD_ARCH}" \ + io.hass.type="addon" \ + io.hass.version="${BUILD_VERSION}" \ + maintainer="Fabio Garavini " \ + org.opencontainers.image.title="${BUILD_NAME}" \ + org.opencontainers.image.description="${BUILD_DESCRIPTION}" \ + org.opencontainers.image.vendor="Fabio Garavini Hassio Add-ons" \ + org.opencontainers.image.authors="Fabio Garavini " \ + org.opencontainers.image.licenses="MIT" \ + org.opencontainers.image.url="https://github.com/fabio-garavini" \ + org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \ + org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \ + org.opencontainers.image.created=${BUILD_DATE} \ + org.opencontainers.image.revision=${BUILD_REF} \ + org.opencontainers.image.version=${BUILD_VERSION} \ No newline at end of file diff --git a/gitea/build.yaml b/gitea/build.yaml index 2873b0f..ffac1a2 100644 --- a/gitea/build.yaml +++ b/gitea/build.yaml @@ -1,3 +1,5 @@ build_from: - aarch64: gitea/gitea - amd64: gitea/gitea \ No newline at end of file + aarch64: gitea/gitea:1.23.1 + amd64: gitea/gitea:1.23.1 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/gitea/config.yaml b/gitea/config.yaml index b80ea16..96594c2 100644 --- a/gitea/config.yaml +++ b/gitea/config.yaml @@ -1,6 +1,7 @@ name: Gitea -version: "1.23.1" +version: "1.23.1-v1" slug: gitea +codenotary: info@fabiogaravini.dev description: Gitea is a Git hosting, code review, team collaboration, package registry, and CI/CD url: https://about.gitea.com/ webui: http://[HOST]:[PORT:3000] From a948608888b7d71d24413e9b788e738a01a6a2f0 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 11:51:15 +0100 Subject: [PATCH 04/13] added nextcloud codenotary --- nextcloud/build.yaml | 4 +++- nextcloud/config.yaml | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/nextcloud/build.yaml b/nextcloud/build.yaml index e93eb92..4892a94 100644 --- a/nextcloud/build.yaml +++ b/nextcloud/build.yaml @@ -1,3 +1,5 @@ build_from: amd64: ghcr.io/linuxserver/baseimage-alpine-nginx:3.20 - aarch64: ghcr.io/linuxserver/baseimage-alpine-nginx:3.20 \ No newline at end of file + aarch64: ghcr.io/linuxserver/baseimage-alpine-nginx:3.20 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/nextcloud/config.yaml b/nextcloud/config.yaml index e26a8f9..acd3695 100644 --- a/nextcloud/config.yaml +++ b/nextcloud/config.yaml @@ -1,6 +1,7 @@ name: Nextcloud -version: "30.0.5-v0" +version: "30.0.5-v1" slug: nextcloud +codenotary: info@fabiogaravini.dev description: Nextcloud all-in-one url: https://nextcloud.com arch: From cb1816da5c64e9f8b0cab8e261351c570b3db06c Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 11:54:52 +0100 Subject: [PATCH 05/13] added gitlab codenotary --- gitlab/Dockerfile | 7 ++++--- gitlab/build.yaml | 5 ++++- gitlab/config.yaml | 3 ++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/gitlab/Dockerfile b/gitlab/Dockerfile index 85eb516..7a35bb1 100644 --- a/gitlab/Dockerfile +++ b/gitlab/Dockerfile @@ -2,7 +2,7 @@ ARG BUILD_FROM FROM $BUILD_FROM -ARG BUILD_VERSION +ARG GITLAB_VERSION=17.7.1-ce.0 ARG BUILD_ARCH SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -54,7 +54,7 @@ ARG TARGETARCH RUN { \ echo 'RELEASE_PACKAGE=gitlab-ce'; \ - echo 'RELEASE_VERSION=${BUILD_VERSION}'; \ + echo 'RELEASE_VERSION=${GITLAB_VERSION}'; \ } > /RELEASE RUN \ @@ -63,7 +63,7 @@ RUN \ else \ export DOWNLOAD_ARCH=${BUILD_ARCH}; \ fi; \ - wget --quiet "https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/jammy/gitlab-ce_${BUILD_VERSION}_${DOWNLOAD_ARCH}.deb/download.deb" -O /tmp/gitlab.deb; \ + wget --quiet "https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/jammy/gitlab-ce_${GITLAB_VERSION}_${DOWNLOAD_ARCH}.deb/download.deb" -O /tmp/gitlab.deb; \ dpkg -i /tmp/gitlab.deb; \ rm -rf /tmp/gitlab.deb /var/lib/apt/lists/* @@ -87,6 +87,7 @@ CMD ["/assets/wrapper"] HEALTHCHECK --interval=60s --timeout=30s --retries=5 \ CMD /opt/gitlab/bin/gitlab-healthcheck --fail --max-time 10 +ARG BUILD_VERSION ARG BUILD_DATE ARG BUILD_DESCRIPTION ARG BUILD_NAME diff --git a/gitlab/build.yaml b/gitlab/build.yaml index eab4417..ce134a8 100644 --- a/gitlab/build.yaml +++ b/gitlab/build.yaml @@ -1,3 +1,6 @@ build_from: aarch64: ghcr.io/hassio-addons/ubuntu-base/aarch64:9.0.5 - amd64: ghcr.io/hassio-addons/ubuntu-base/amd64:9.0.5 \ No newline at end of file + amd64: ghcr.io/hassio-addons/ubuntu-base/amd64:9.0.5 +codenotary: + signer: info@fabiogaravini.dev + base_image: notary@home-assistant.io \ No newline at end of file diff --git a/gitlab/config.yaml b/gitlab/config.yaml index 6caeec6..968dfd3 100644 --- a/gitlab/config.yaml +++ b/gitlab/config.yaml @@ -1,6 +1,7 @@ name: Gitlab -version: 17.7.1-ce.0 +version: 17.7.1-ce.0-v0 slug: gitlab +codenotary: info@fabiogaravini.dev description: Gitlab Comunity Edition url: https://gitlab.com/rluna-gitlab/gitlab-ce webui: http://[HOST]:[PORT:80] From 38c67de38c76b338cfe0c04ee0169a7d471c9129 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:14:46 +0100 Subject: [PATCH 06/13] gitea version update --- gitea/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/config.yaml b/gitea/config.yaml index 96594c2..484febb 100644 --- a/gitea/config.yaml +++ b/gitea/config.yaml @@ -1,5 +1,5 @@ name: Gitea -version: "1.23.1-v1" +version: "1.23.1-v2" slug: gitea codenotary: info@fabiogaravini.dev description: Gitea is a Git hosting, code review, team collaboration, package registry, and CI/CD From f0bac3e96a5aa96ec9e68477ca8a1879534979cb Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:16:31 +0100 Subject: [PATCH 07/13] paperless added codenotary --- paperless/build.yaml | 4 +++- paperless/config.yaml | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/paperless/build.yaml b/paperless/build.yaml index e39e11e..ca593a1 100644 --- a/paperless/build.yaml +++ b/paperless/build.yaml @@ -1,3 +1,5 @@ build_from: amd64: ghcr.io/paperless-ngx/paperless-ngx - aarch64: ghcr.io/paperless-ngx/paperless-ngx \ No newline at end of file + aarch64: ghcr.io/paperless-ngx/paperless-ngx +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/paperless/config.yaml b/paperless/config.yaml index a3bb4c8..bb8d387 100644 --- a/paperless/config.yaml +++ b/paperless/config.yaml @@ -1,6 +1,7 @@ name: Paperless -version: "2.13.5-v0" +version: "2.13.5-v1" slug: paperless +codenotary: info@fabiogaravini.dev description: Document management system that transforms your physical documents into a searchable online archive url: https://docs.paperless-ngx.com webui: http://[HOST]:[PORT:8000] From 81db99ffcc0da979dafa09454507b2122c4bbe48 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:19:02 +0100 Subject: [PATCH 08/13] pocketbase added codenotary --- pocketbase/Dockerfile | 33 ++++++++++++++++++++++++++++++--- pocketbase/build.yaml | 1 + pocketbase/config.yaml | 3 ++- 3 files changed, 33 insertions(+), 4 deletions(-) diff --git a/pocketbase/Dockerfile b/pocketbase/Dockerfile index b533fe1..6abad39 100644 --- a/pocketbase/Dockerfile +++ b/pocketbase/Dockerfile @@ -3,7 +3,7 @@ ARG BUILD_FROM FROM $BUILD_FROM ARG BUILD_ARCH -ARG BUILD_VERSION +ARG POCKETBASE_VERSION=0.24.3 RUN apk add --no-cache \ unzip \ @@ -16,9 +16,36 @@ RUN \ else \ export DOWNLOAD_ARCH=${BUILD_ARCH}; \ fi; \ - wget --quiet https://github.com/pocketbase/pocketbase/releases/download/v${BUILD_VERSION}/pocketbase_${BUILD_VERSION}_linux_${DOWNLOAD_ARCH}.zip -O /tmp/pb.zip; \ + wget --quiet https://github.com/pocketbase/pocketbase/releases/download/v${POCKETBASE_VERSION}/pocketbase_${POCKETBASE_VERSION}_linux_${DOWNLOAD_ARCH}.zip -O /tmp/pb.zip; \ unzip /tmp/pb.zip -d /pb/ COPY rootfs/ / -EXPOSE 8080 \ No newline at end of file +EXPOSE 8080 + +ARG BUILD_VERSION +ARG BUILD_ARCH +ARG BUILD_DATE +ARG BUILD_DESCRIPTION +ARG BUILD_NAME +ARG BUILD_REF +ARG BUILD_REPOSITORY + +LABEL \ + io.hass.name="${BUILD_NAME}" \ + io.hass.description="${BUILD_DESCRIPTION}" \ + io.hass.arch="${BUILD_ARCH}" \ + io.hass.type="addon" \ + io.hass.version="${BUILD_VERSION}" \ + maintainer="Fabio Garavini " \ + org.opencontainers.image.title="${BUILD_NAME}" \ + org.opencontainers.image.description="${BUILD_DESCRIPTION}" \ + org.opencontainers.image.vendor="Fabio Garavini Hassio Add-ons" \ + org.opencontainers.image.authors="Fabio Garavini " \ + org.opencontainers.image.licenses="MIT" \ + org.opencontainers.image.url="https://github.com/fabio-garavini" \ + org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \ + org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \ + org.opencontainers.image.created=${BUILD_DATE} \ + org.opencontainers.image.revision=${BUILD_REF} \ + org.opencontainers.image.version=${BUILD_VERSION} \ No newline at end of file diff --git a/pocketbase/build.yaml b/pocketbase/build.yaml index 8055cfd..f897f7f 100644 --- a/pocketbase/build.yaml +++ b/pocketbase/build.yaml @@ -3,4 +3,5 @@ build_from: amd64: ghcr.io/hassio-addons/base:stable armv7: ghcr.io/hassio-addons/base:stable codenotary: + signer: info@fabiogaravini.dev base_image: codenotary@frenck.dev \ No newline at end of file diff --git a/pocketbase/config.yaml b/pocketbase/config.yaml index ebb13dd..91dd75d 100644 --- a/pocketbase/config.yaml +++ b/pocketbase/config.yaml @@ -1,6 +1,7 @@ name: PocketBase -version: 0.24.3 +version: "0.24.3-v0" slug: pocketbase +codenotary: info@fabiogaravini.dev description: Pocketbase is an open source backend url: "https://pocketbase.io" webui: "http://[HOST]:[PORT:8090]/_/" From 6dbbc6a9ac30dc3d29f02b44a05d417949bf2ce4 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:20:44 +0100 Subject: [PATCH 09/13] postgres 16 added codenotary --- postgres_16/build.yaml | 4 +++- postgres_16/config.yaml | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/postgres_16/build.yaml b/postgres_16/build.yaml index bbfb49a..4508c85 100644 --- a/postgres_16/build.yaml +++ b/postgres_16/build.yaml @@ -1,3 +1,5 @@ build_from: aarch64: tensorchord/pgvecto-rs:pg16-v0.3.0 - amd64: tensorchord/pgvecto-rs:pg16-v0.3.0 \ No newline at end of file + amd64: tensorchord/pgvecto-rs:pg16-v0.3.0 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/postgres_16/config.yaml b/postgres_16/config.yaml index aaa9359..ade3a65 100644 --- a/postgres_16/config.yaml +++ b/postgres_16/config.yaml @@ -1,6 +1,7 @@ name: Postgres 16 -version: "pg16-v0.3.0" +version: "pg16-v0.3.0-v0" slug: postgres_16 +codenotary: info@fabiogaravini.dev description: Postgres 16 with pgvecto.rs url: https://www.postgresql.org/about/news/postgresql-16-released-2715 startup: initialize From 432753f444dea10686beacbce77c96898459f2c1 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:24:28 +0100 Subject: [PATCH 10/13] prometheus added codenotary --- prometheus/Dockerfile | 4 ++-- prometheus/build.yaml | 5 +++++ prometheus/config.yaml | 6 ++++-- 3 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 prometheus/build.yaml diff --git a/prometheus/Dockerfile b/prometheus/Dockerfile index 5fa6b97..02e9568 100644 --- a/prometheus/Dockerfile +++ b/prometheus/Dockerfile @@ -1,5 +1,5 @@ -ARG BUILD_VERSION -FROM prom/prometheus:${BUILD_VERSION} +ARG BUILD_FROM +FROM ${BUILD_FROM} USER root diff --git a/prometheus/build.yaml b/prometheus/build.yaml new file mode 100644 index 0000000..9cf09da --- /dev/null +++ b/prometheus/build.yaml @@ -0,0 +1,5 @@ +build_from: + aarch64: prom/prometheus:v3.1.0 + amd64: prom/prometheus:v3.1.0 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/prometheus/config.yaml b/prometheus/config.yaml index ff61d06..70dfa8c 100644 --- a/prometheus/config.yaml +++ b/prometheus/config.yaml @@ -1,6 +1,7 @@ name: Prometheus -version: v3.1.0 +version: v3.1.0-v0 slug: prometheus +codenotary: info@fabiogaravini.dev description: Prometheus monitoring system url: https://prometheus.io startup: initialize @@ -21,4 +22,5 @@ map: ports: 9090/tcp: null ports_description: - 9090/tcp: Metrics \ No newline at end of file + 9090/tcp: Metrics +image: fabioogaravini/hassio-{arch}-prometheus \ No newline at end of file From 52e70240baf97f21fcb5ac51484a8361e7892056 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:27:45 +0100 Subject: [PATCH 11/13] redis stack added codenotary --- redis/Dockerfile | 3 +-- redis/build.yaml | 6 ++++-- redis/config.yaml | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/redis/Dockerfile b/redis/Dockerfile index d4f2faa..c8d668b 100644 --- a/redis/Dockerfile +++ b/redis/Dockerfile @@ -1,9 +1,8 @@ ARG BUILD_FROM -ARG BUILD_VERSION FROM oliver006/redis_exporter:alpine AS redis-exporter -FROM ${BUILD_FROM}:${BUILD_VERSION} +FROM ${BUILD_FROM} ENV REDIS_DATA_DIR="/config" \ RIPORT=8001 diff --git a/redis/build.yaml b/redis/build.yaml index 4913a70..263d6f2 100644 --- a/redis/build.yaml +++ b/redis/build.yaml @@ -1,3 +1,5 @@ build_from: - aarch64: redis/redis-stack - amd64: redis/redis-stack \ No newline at end of file + aarch64: redis/redis-stack:7.4.0-v2 + amd64: redis/redis-stack:7.4.0-v2 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/redis/config.yaml b/redis/config.yaml index c26831c..14c07c7 100644 --- a/redis/config.yaml +++ b/redis/config.yaml @@ -1,6 +1,7 @@ name: Redis DB -version: 7.4.0-v2 +version: 7.4.0-v2-v0 slug: redis +codenotary: info@fabiogaravini.dev description: Redis database url: https://redis.io startup: initialize From 6296262524902a61e182cf131b52b823b09390a7 Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:29:56 +0100 Subject: [PATCH 12/13] syncthing added codenotary --- syncthing/Dockerfile | 3 +-- syncthing/build.yaml | 8 +++++--- syncthing/config.yaml | 3 ++- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/syncthing/Dockerfile b/syncthing/Dockerfile index bd75131..a3fbdbf 100644 --- a/syncthing/Dockerfile +++ b/syncthing/Dockerfile @@ -1,7 +1,6 @@ ARG BUILD_FROM -ARG BUILD_VERSION -FROM ${BUILD_FROM}:${BUILD_VERSION} +FROM ${BUILD_FROM} COPY rootfs/ / diff --git a/syncthing/build.yaml b/syncthing/build.yaml index bb87ef4..cb86f21 100644 --- a/syncthing/build.yaml +++ b/syncthing/build.yaml @@ -1,4 +1,6 @@ build_from: - armv7: ghcr.io/linuxserver/syncthing - aarch64: ghcr.io/linuxserver/syncthing - amd64: ghcr.io/linuxserver/syncthing \ No newline at end of file + armv7: ghcr.io/linuxserver/syncthing:1.29.2 + aarch64: ghcr.io/linuxserver/syncthing:1.29.2 + amd64: ghcr.io/linuxserver/syncthing:1.29.2 +codenotary: + signer: info@fabiogaravini.dev \ No newline at end of file diff --git a/syncthing/config.yaml b/syncthing/config.yaml index 2e6be2a..9ad4064 100644 --- a/syncthing/config.yaml +++ b/syncthing/config.yaml @@ -1,6 +1,7 @@ name: Syncthing -version: "1.29.2" +version: 1.29.2-v0 slug: syncthing +codenotary: info@fabiogaravini.dev description: "Open Source Continuous File Synchronization" url: https://syncthing.net ingress: true From 830dafeca2e7a9b14426b20949a16eeb30d917ae Mon Sep 17 00:00:00 2001 From: fabio-garavini Date: Sat, 18 Jan 2025 12:32:14 +0100 Subject: [PATCH 13/13] syncthing armv7 unsupported --- syncthing/build.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/syncthing/build.yaml b/syncthing/build.yaml index cb86f21..45181a9 100644 --- a/syncthing/build.yaml +++ b/syncthing/build.yaml @@ -1,5 +1,4 @@ build_from: - armv7: ghcr.io/linuxserver/syncthing:1.29.2 aarch64: ghcr.io/linuxserver/syncthing:1.29.2 amd64: ghcr.io/linuxserver/syncthing:1.29.2 codenotary: