Files
truecharts/containers
TrueCharts Bot 3f61b6f8da chore(container): update docker.io/renovate/renovate docker tag to v41.51.2 (#38082)
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 |
patch | `41.51.1-full` -> `41.51.2-full` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

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

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

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

##### Documentation

- update references to renovate/renovate (main)
([#&#8203;37299](https://redirect.github.com/renovatebot/renovate/issues/37299))
([876b0e5](https://redirect.github.com/renovatebot/renovate/commit/876b0e5b1958b30b7bfa80949e1e0dead22d00e4))

##### Miscellaneous Chores

- **deps:** lock file maintenance (main)
([#&#8203;37300](https://redirect.github.com/renovatebot/renovate/issues/37300))
([9c9760a](https://redirect.github.com/renovatebot/renovate/commit/9c9760a0ca46b62a3a6527bb57a643ff053aabbd))
- **deps:** update dependency memfs to v4.20.1 (main)
([#&#8203;37289](https://redirect.github.com/renovatebot/renovate/issues/37289))
([2249780](https://redirect.github.com/renovatebot/renovate/commit/2249780a85e5ee6d8030ead35de2653e638ecffe))
- **deps:** update dependency memfs to v4.22.0 (main)
([#&#8203;37290](https://redirect.github.com/renovatebot/renovate/issues/37290))
([8200fee](https://redirect.github.com/renovatebot/renovate/commit/8200fee71a2fd5b2380879557e8d5a5049c17920))
- **deps:** update dependency memfs to v4.22.1 (main)
([#&#8203;37294](https://redirect.github.com/renovatebot/renovate/issues/37294))
([7d3b1ff](https://redirect.github.com/renovatebot/renovate/commit/7d3b1ff76e8aa24ae1a36acb9507adf54922be61))
- **deps:** update dependency memfs to v4.23.0 (main)
([#&#8203;37298](https://redirect.github.com/renovatebot/renovate/issues/37298))
([1f7ab10](https://redirect.github.com/renovatebot/renovate/commit/1f7ab1076b2cc684687b68453b4f88078067a80d))

##### Build System

- **deps:** update dependency cacache to v20 (main)
([#&#8203;37308](https://redirect.github.com/renovatebot/renovate/issues/37308))
([bfa7486](https://redirect.github.com/renovatebot/renovate/commit/bfa748668e0a5c65c3d12053da909969658b67c3))
- **deps:** update dependency cronstrue to v3 (main)
([#&#8203;37309](https://redirect.github.com/renovatebot/renovate/issues/37309))
([318770c](https://redirect.github.com/renovatebot/renovate/commit/318770c866c9ac715490a5f2121191a285f43ac6))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS40NS4wIiwidXBkYXRlZEluVmVyIjoiNDEuNDUuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-04 16:24:15 +02: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.