Upgrade matrix-corporal (3.1.3 -> 3.1.4) and switch where its gets pulled from

From 3.1.4 and onward, container images will be published to ghcr.io instead of docker.io.

These images are built for arm64 and amd64, but not for arm32 anymore.
This commit is contained in:
Slavi Pantaleev
2025-02-25 17:53:03 +02:00
parent 294fd55727
commit 7d4f9fe7dc
2 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@
matrix_corporal_enabled: true
# renovate: datasource=docker depName=devture/matrix-corporal
matrix_corporal_version: 3.1.3
# renovate: datasource=docker depName=ghcr.io/devture/matrix-corporal
matrix_corporal_version: 3.1.4
matrix_corporal_container_image_self_build: false
matrix_corporal_container_image_self_build_repo: "https://github.com/devture/matrix-corporal.git"
@ -84,7 +84,7 @@ matrix_corporal_systemd_required_services_list_custom: []
matrix_corporal_docker_image: "{{ matrix_corporal_docker_image_registry_prefix }}devture/matrix-corporal:{{ matrix_corporal_docker_image_tag }}"
matrix_corporal_docker_image_registry_prefix: "{{ 'localhost/' if matrix_corporal_container_image_self_build else matrix_corporal_docker_image_registry_prefix_upstream }}"
matrix_corporal_docker_image_registry_prefix_upstream: "{{ matrix_corporal_docker_image_registry_prefix_upstream_default }}"
matrix_corporal_docker_image_registry_prefix_upstream_default: docker.io/
matrix_corporal_docker_image_registry_prefix_upstream_default: ghcr.io/
matrix_corporal_docker_image_tag: "{{ matrix_corporal_version }}" # for backward-compatibility
matrix_corporal_docker_image_force_pull: "{{ matrix_corporal_docker_image.endswith(':latest') }}"