Files
charts/containers
TrueCharts Bot 4ce87593c8 chore(container): update docker.io/renovate/renovate docker tag to v41.30.5 (#37488)
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.30.3-full` -> `41.30.5-full` |

---

### Release Notes

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

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

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

##### Documentation

- **config:** remove notes about unsupported gitlab codeowners features
([#&#8203;36950](https://redirect.github.com/renovatebot/renovate/issues/36950))
([33c27a7](33c27a7dda))

##### Code Refactoring

- allow to use the rebase label in PR body, issues, or comments
([#&#8203;36374](https://redirect.github.com/renovatebot/renovate/issues/36374))
([c4212f7](c4212f7824))

##### Build System

- **deps:** update dependency zod to v3.25.73 (main)
([#&#8203;36952](https://redirect.github.com/renovatebot/renovate/issues/36952))
([f3e0408](f3e04080b2))

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

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

##### Documentation

- **configuration-options:** refer to assignAutomerge in automerge and
reviewers sections
([#&#8203;36943](https://redirect.github.com/renovatebot/renovate/issues/36943))
([bc3e33f](bc3e33faa4))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v3.10.54
(main)
([#&#8203;36947](https://redirect.github.com/renovatebot/renovate/issues/36947))
([4833b24](4833b24380))

##### Build System

- **deps:** update dependency zod to v3.25.72 (main)
([#&#8203;36948](https://redirect.github.com/renovatebot/renovate/issues/36948))
([ff588fe](ff588fea5f))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-07-14 02:11:56 +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.