Files
truecharts/containers
TrueCharts Bot fb138ace23 chore(container): update docker.io/renovate/renovate docker tag to v41.81.4 (#38643)
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.81.2-full` -> `41.81.4-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.81.4`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.81.4)

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

##### Bug Fixes

- **markdown:** use `remark-gfm`
([#&#8203;37454](https://redirect.github.com/renovatebot/renovate/issues/37454))
([137d46d](https://redirect.github.com/renovatebot/renovate/commit/137d46d61ee7594c0a82fb042cb0745b372b1b29))

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

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

##### Bug Fixes

- **deps:** update ghcr.io/renovatebot/base-image docker tag to v10.33.3
(main)
([#&#8203;37618](https://redirect.github.com/renovatebot/renovate/issues/37618))
([816ba45](https://redirect.github.com/renovatebot/renovate/commit/816ba456b4f6a09057c553c5bc3b9909e67dd3f7))

##### Miscellaneous Chores

- **deps:** update containerbase/internal-tools action to v3.10.75
(main)
([#&#8203;37612](https://redirect.github.com/renovatebot/renovate/issues/37612))
([ea9ef53](https://redirect.github.com/renovatebot/renovate/commit/ea9ef5363a50e0f4a39e527fecb366ce51aeed0f))
- **deps:** update dependency nock to v14.0.10 (main)
([#&#8203;37617](https://redirect.github.com/renovatebot/renovate/issues/37617))
([c1863bd](https://redirect.github.com/renovatebot/renovate/commit/c1863bdcd8920e522ed92b2e5a0ff2f616fa0d56))
- **deps:** update dependency tsx to v4.20.4 (main)
([#&#8203;37610](https://redirect.github.com/renovatebot/renovate/issues/37610))
([4935d5e](https://redirect.github.com/renovatebot/renovate/commit/4935d5e14ead0363831939e29d68c73bd69b00a0))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to
v13.10.6 (main)
([#&#8203;37611](https://redirect.github.com/renovatebot/renovate/issues/37611))
([6901eff](https://redirect.github.com/renovatebot/renovate/commit/6901effd30673a003d15ce7a309c4cb691488d54))
- **deps:** update ghcr.io/containerbase/devcontainer docker tag to
v13.10.7 (main)
([#&#8203;37613](https://redirect.github.com/renovatebot/renovate/issues/37613))
([d65eebd](https://redirect.github.com/renovatebot/renovate/commit/d65eebd6a7d3f244f6f81bf6d6590d4acaa8a599))

</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-19 22:42:20 +02:00
..
2024-10-08 00:35:43 +00:00
2024-10-08 00:35:43 +00:00
2024-10-08 00:35:43 +00:00
2024-10-08 00:35:43 +00: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.