Files
truecharts/containers
TrueCharts Bot 4ef3a83081 chore(container): update docker.io/renovate/renovate docker tag to v41.76.1 (#38570)
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.76.0-full` -> `41.76.1-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.76.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.76.1)

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

##### Bug Fixes

- Codecov action pin version
([#&#8203;37581](https://redirect.github.com/renovatebot/renovate/issues/37581))
([c16890c](https://redirect.github.com/renovatebot/renovate/commit/c16890c9ae442031522daa8208411dbce23fe43f))

##### Documentation

- update references to renovate/renovate (main)
([#&#8203;37570](https://redirect.github.com/renovatebot/renovate/issues/37570))
([c78e165](https://redirect.github.com/renovatebot/renovate/commit/c78e1659f1e45d68187c0a23ff4c7b1bf12c49db))
- updated docs for secrets API token permissions
([#&#8203;36876](https://redirect.github.com/renovatebot/renovate/issues/36876))
([30b6c65](https://redirect.github.com/renovatebot/renovate/commit/30b6c65ac1b76cebb3c54908a2cf457978bc87bb))

##### Miscellaneous Chores

- **deps:** lock file maintenance (main)
([#&#8203;37571](https://redirect.github.com/renovatebot/renovate/issues/37571))
([a3d46bb](https://redirect.github.com/renovatebot/renovate/commit/a3d46bb494faadaad9b2f81079e5301c25022cab))
- **deps:** update containerbase/internal-tools action to v3.10.74
(main)
([#&#8203;37572](https://redirect.github.com/renovatebot/renovate/issues/37572))
([37641bf](https://redirect.github.com/renovatebot/renovate/commit/37641bfcbd81f778b79828c75c6808a032894d0b))
- **deps:** update dependency renovatebot/github-action to v43.0.8
(main)
([#&#8203;37574](https://redirect.github.com/renovatebot/renovate/issues/37574))
([d572c08](https://redirect.github.com/renovatebot/renovate/commit/d572c084410a06607304484b987c3c7745e5a074))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to
v13.10.3 (main)
([#&#8203;37573](https://redirect.github.com/renovatebot/renovate/issues/37573))
([ae95ad8](https://redirect.github.com/renovatebot/renovate/commit/ae95ad840fea8f6cb73f3723dbabf620e6371067))
- **deps:** update otel/opentelemetry-collector-contrib docker tag to
v0.132.3 (main)
([#&#8203;37575](https://redirect.github.com/renovatebot/renovate/issues/37575))
([b51d590](https://redirect.github.com/renovatebot/renovate/commit/b51d590ac5717cc9df633133199dfe7be325a25a))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS43Ni4wIiwidXBkYXRlZEluVmVyIjoiNDEuNzYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-08-18 16:12:05 +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.