Files
truecharts/containers
TrueCharts Bot f92e55d66d chore(container): update docker.io/renovate/renovate docker tag to v41.62.3 (#38274)
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.62.1-full` -> `41.62.3-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.62.3`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.62.3)

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

##### Miscellaneous Chores

- **deps:** lock file maintenance (main)
([#&#8203;37424](https://redirect.github.com/renovatebot/renovate/issues/37424))
([58bf02d](https://redirect.github.com/renovatebot/renovate/commit/58bf02d02b320b1007f618f684faa05339a3e336))
- **deps:** update actions/checkout action to v4.3.0 (main)
([#&#8203;37431](https://redirect.github.com/renovatebot/renovate/issues/37431))
([df6af36](https://redirect.github.com/renovatebot/renovate/commit/df6af36463b94aa0567a8f6a6a80393dcb4847b1))
- **deps:** update containerbase/internal-tools action to v3.10.70
(main)
([#&#8203;37433](https://redirect.github.com/renovatebot/renovate/issues/37433))
([8aa4131](https://redirect.github.com/renovatebot/renovate/commit/8aa413192093aceedcba13445f3ff582c93a58b0))
- **deps:** update dependency lint-staged to v16.1.4 (main)
([#&#8203;37418](https://redirect.github.com/renovatebot/renovate/issues/37418))
([f46a720](https://redirect.github.com/renovatebot/renovate/commit/f46a720b5a1e509b619db06505d0dbfed718b803))
- **deps:** update dependency typescript-eslint to v8.39.0 (main)
([#&#8203;37438](https://redirect.github.com/renovatebot/renovate/issues/37438))
([58fe365](https://redirect.github.com/renovatebot/renovate/commit/58fe365f40ac625270bb14bb8df3888c529547ca))

##### Build System

- **deps:** update dependency google-auth-library to v10.2.1 (main)
([#&#8203;37439](https://redirect.github.com/renovatebot/renovate/issues/37439))
([eb1878b](https://redirect.github.com/renovatebot/renovate/commit/eb1878bae2b3393caf21f7de27e3e9ca6c87ec0f))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-11 23:17:01 +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.