Files
charts/containers
TrueCharts Bot 33cee24e9c chore(container): update docker.io/renovate/renovate docker tag to v41.32.1 (#37501)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [docker.io/renovate/renovate](https://renovatebot.com)
([source](https://redirect.github.com/renovatebot/renovate)) | final |
minor | `41.30.5-full` -> `41.32.1-full` |

---

### Release Notes

<details>
<summary>renovatebot/renovate (docker.io/renovate/renovate)</summary>

###
[`v41.32.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.32.1)

[Compare
Source](https://redirect.github.com/renovatebot/renovate/compare/41.32.0...41.32.1)

##### Build System

- **deps:** update dependency editorconfig to v3.0.1 (main)
([#&#8203;36972](https://redirect.github.com/renovatebot/renovate/issues/36972))
([40ef3b2](40ef3b270f))

###
[`v41.32.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.32.0)

[Compare
Source](https://redirect.github.com/renovatebot/renovate/compare/41.31.1...41.32.0)

##### Features

- **replacements:** improve `Package` field for prs
([#&#8203;36815](https://redirect.github.com/renovatebot/renovate/issues/36815))
([9fe43ea](9fe43ea69c))

##### Bug Fixes

- **post-upgrade-tasks:** handle renamed files as add/delete pairs
([#&#8203;36944](https://redirect.github.com/renovatebot/renovate/issues/36944))
([2a28db0](2a28db01c0))

##### Code Refactoring

- use re2
([#&#8203;36957](https://redirect.github.com/renovatebot/renovate/issues/36957))
([587b9a9](587b9a9cda))

##### Tests

- use async
([#&#8203;36953](https://redirect.github.com/renovatebot/renovate/issues/36953))
([8bedd04](8bedd04ab7))

###
[`v41.31.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.31.1)

[Compare
Source](https://redirect.github.com/renovatebot/renovate/compare/41.31.0...41.31.1)

##### Build System

- **deps:** update dependency zod to v3.25.74 (main)
([#&#8203;36964](https://redirect.github.com/renovatebot/renovate/issues/36964))
([44035b2](44035b2ae4))

###
[`v41.31.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.31.0)

[Compare
Source](https://redirect.github.com/renovatebot/renovate/compare/41.30.5...41.31.0)

##### Features

- **gerrit:** suggest use of rebase hashtag
([#&#8203;36955](https://redirect.github.com/renovatebot/renovate/issues/36955))
([30b0599](30b0599efe))

##### Bug Fixes

- **datasource/gitlab-packages:** prefer `conan_package_name` if it
exists
([#&#8203;36954](https://redirect.github.com/renovatebot/renovate/issues/36954))
([518eb0a](518eb0aeff))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-07-14 06:07:27 +00:00
..

Container Images

Images are hosted on Quay here.

Some older images can be found on GitHub Container Registry.

Mirror

We host a dedicated mirror repostiory, these containers are directly fetched from official and/or trusted sources.

Purpose

We host our own mirror for a multitude of reasons, which includes:

  • Getting around Docker Hub rate-limiting
  • Preventing upstream maintainers removing tags from breaking our Apps
  • Generating usage metrics
  • Applying patches
  • Improving code uniformity
  • Allowing multi-registry failover

Adding New Containers

Before a chart can be added to the truecharts/charts repository, you first need to add a container here to the mirror. If you need help with this process please see the #development channel in the TrueCharts Discord Server.

Step 1: Create a Dockerfile

Copy the contents below and substitute the upstream application owner's name with <Upstream Owner Name>, <Upstream App Name> with the application name, and <Upstream Tag> with the upstream tag's name. Also get the digest value of the app and substitute that in for <Upstream Digest>.

FROM <Upstream Owner Name>/<Upstream App Name>:<Upstream Tag>@sha256:<Upstream Digest>
LABEL org.opencontainers.image.source=https://github.com/truecharts/containers

ARG CONTAINER_NAME
ARG CONTAINER_VER
LABEL org.opencontainers.image.title="${CONTAINER_NAME}"
LABEL org.opencontainers.image.url="https://truecharts.org/docs/charts/${CONTAINER_NAME}"
LABEL org.opencontainers.image.version="${CONTAINER_VER}"
LABEL org.opencontainers.image.description="Container for ${CONTAINER_NAME} by TrueCharts"
LABEL org.opencontainers.image.authors="TrueCharts"
LABEL org.opencontainers.image.documentation="https://truecharts.org/docs/charts/${CONTAINER_NAME}"

Step 2: Create a PLATFORM file

Based on the upstream platform, create a file with that value. Typically the value is linux/amd64.

Step 3: Submit a Pull Request

Once all these steps are completed and you verified that they are correct, please submit a pull request to this repository! When finished, you can create your chart in the truecharts/charts repository.