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

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

##### Bug Fixes

- **gomod:** skip `-d` flag for go >=1.18
([#&#8203;37428](https://redirect.github.com/renovatebot/renovate/issues/37428))
([dd186a1](https://redirect.github.com/renovatebot/renovate/commit/dd186a1359d870ca1a9af064416116860705ef89))

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

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

##### Features

- add option `skipArtifactsUpdate`
([#&#8203;35993](https://redirect.github.com/renovatebot/renovate/issues/35993))
([a3616a4](https://redirect.github.com/renovatebot/renovate/commit/a3616a496a7da458a00f398fba2463d1d1e49145))
- add support for second file config
([#&#8203;37033](https://redirect.github.com/renovatebot/renovate/issues/37033))
([35910b8](https://redirect.github.com/renovatebot/renovate/commit/35910b8c87aaa65003852de2ba4f276f3a77fa28))

##### Bug Fixes

- **local-scm:** Increase default execSync buffer
([#&#8203;36995](https://redirect.github.com/renovatebot/renovate/issues/36995))
([c627e17](https://redirect.github.com/renovatebot/renovate/commit/c627e17816dcfa53ab969184fd0a8f3671ff2f3c))

##### Documentation

- update references to renovate/renovate to v41.61.1 (main)
([#&#8203;37422](https://redirect.github.com/renovatebot/renovate/issues/37422))
([a9b6ad9](https://redirect.github.com/renovatebot/renovate/commit/a9b6ad9951ae95485cbf0f41ccd501fdf7bd28ae))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v3.10.66
(main)
([#&#8203;37421](https://redirect.github.com/renovatebot/renovate/issues/37421))
([b7160b1](https://redirect.github.com/renovatebot/renovate/commit/b7160b10d56934645e1fdb7eb48a828517749144))
- **deps:** update containerbase/internal-tools action to v3.10.68
(main)
([#&#8203;37423](https://redirect.github.com/renovatebot/renovate/issues/37423))
([b83a3df](https://redirect.github.com/renovatebot/renovate/commit/b83a3df959ae6e2eb086f6d3f7b3cea451b2cb22))
- **deps:** update containerbase/internal-tools action to v3.10.69
(main)
([#&#8203;37426](https://redirect.github.com/renovatebot/renovate/issues/37426))
([fc512ab](https://redirect.github.com/renovatebot/renovate/commit/fc512ab6e6ee3423c24a4d3f219acda3f5a1b4c4))
- **deps:** update dependency renovatebot/github-action to v43.0.7
(main)
([#&#8203;37427](https://redirect.github.com/renovatebot/renovate/issues/37427))
([028318a](https://redirect.github.com/renovatebot/renovate/commit/028318a21ec306bba53412a4cfc2c1ec0eb9065b))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MS41My4xIiwidXBkYXRlZEluVmVyIjoiNDEuNTMuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-08-11 16:57:51 +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.