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.73.4-full` -> `41.74.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.74.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.74.1) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/41.74.0...41.74.1) ##### Documentation - fix local development links ([#​37542](https://redirect.github.com/renovatebot/renovate/issues/37542)) ([09a80b2](https://redirect.github.com/renovatebot/renovate/commit/09a80b28329227df985367c0295d62e915e0d759)) - note postUpgradeTasks for customers ([#​37536](https://redirect.github.com/renovatebot/renovate/issues/37536)) ([e84e54f](https://redirect.github.com/renovatebot/renovate/commit/e84e54f69e614ad31b690466fdd9ad383c22be4a)) ##### Miscellaneous Chores - **deps:** update ghcr.io/containerbase/devcontainer docker tag to v13.8.69 (main) ([#​37540](https://redirect.github.com/renovatebot/renovate/issues/37540)) ([ebfbca5](https://redirect.github.com/renovatebot/renovate/commit/ebfbca57085f27f98eead5e383d803b063719900)) - **deps:** update ghcr.io/containerbase/devcontainer docker tag to v13.9.0 (main) ([#​37546](https://redirect.github.com/renovatebot/renovate/issues/37546)) ([f6743ad](https://redirect.github.com/renovatebot/renovate/commit/f6743ad08b14c5691069029b1a322ac484c22018)) ##### Build System - **deps:** update dependency strip-json-comments to v5.0.3 (main) ([#​37545](https://redirect.github.com/renovatebot/renovate/issues/37545)) ([3437c30](https://redirect.github.com/renovatebot/renovate/commit/3437c3055166ecc72a250085054a07ca6ff18579)) ### [`v41.74.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/41.74.0) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/41.73.4...41.74.0) ##### Features - add `crow` manager (Crow CI) ([#​37040](https://redirect.github.com/renovatebot/renovate/issues/37040)) ([d4f3ce5](https://redirect.github.com/renovatebot/renovate/commit/d4f3ce5b993d0fae7fc0ec85c80cabce990770ce)) ##### Bug Fixes - **data:** automatic update of static data ([#​37288](https://redirect.github.com/renovatebot/renovate/issues/37288)) ([c5ced0c](https://redirect.github.com/renovatebot/renovate/commit/c5ced0c091c99b010a697bc25d98a17340366eaf)) ##### Miscellaneous Chores - ignore esbuild postinstall ([#​37538](https://redirect.github.com/renovatebot/renovate/issues/37538)) ([3a63540](https://redirect.github.com/renovatebot/renovate/commit/3a635403c7a733241a485320d149d98941beaa48)) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS43Mi4xIiwidXBkYXRlZEluVmVyIjoiNDEuNzIuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
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.