Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/docker-base-images
source_path: CONTRIBUTING.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

# Contributing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Get Available Images
source_repo: hoverkraft-tech/docker-base-images
source_path: actions/get-available-images/README.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

<!-- header:start -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Should Build Images
source_repo: hoverkraft-tech/docker-base-images
source_path: actions/should-build-images/README.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

<!-- header:start -->
Expand Down Expand Up @@ -58,11 +58,11 @@ Check if some files have changed requiring the build of the given images.

## Inputs

| **Input** | **Description** | **Required** | **Default** |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ----------- |
| **`images`** | Image names located in the 'images' folder. | **true** | - |
| | Formatted as a JSON array. | | |
| | Example: `["php-8", "nodejs-24"]` | | |
| **Input** | **Description** | **Required** | **Default** |
| -------------- | ----------------------------------------------------------------------------------------------------------------- | ------------ | ----------- |
| **`images`** | Image names located in the 'images' folder. | **true** | - |
| | Formatted as a JSON array. | | |
| | Example: `["php-8", "nodejs-24"]` | | |
| **`base-sha`** | Specify a different base commit SHA used for comparing changes. See [https://github.com/tj-actions/changed-files](https://github.com/tj-actions/changed-files) | **false** | - |

<!-- inputs:end -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/docker-base-images
source_path: .github/workflows/continuous-integration.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

<!-- header:start -->
Expand Down Expand Up @@ -172,17 +172,17 @@ jobs:

### Workflow Call Inputs

| **Input** | **Description** | **Required** | **Type** | **Default** |
| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- | -------------------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| | See [https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job](https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job). | | | |
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
| | Can be overridden per image with `images/<image>/build.json` or an image object in `images`. | | | |
| | See [https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images](https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images). | | | |
| **`test-image-tag`** | Tag of the published `testcontainers-node` runner image to use for tests. | **false** | **string** | `latest` |
| **Input** | **Description** | **Required** | **Type** | **Default** |
| --------------------------- | -------------------------------------------------------------------------------------------- | ------------ | ---------- | -------------------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| | See [https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job](https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job). | | | |
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
| | Can be overridden per image with `images/<image>/build.json` or an image object in `images`. | | | |
| | See [https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images](https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images). | | | |
| **`test-image-tag`** | Tag of the published `testcontainers-node` runner image to use for tests. | **false** | **string** | `latest` |

<!-- inputs:end -->

Expand All @@ -204,9 +204,9 @@ jobs:

## Outputs

| **Output** | **Description** |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **`built-images`** | Built images data. |
| **Output** | **Description** |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| **`built-images`** | Built images data. |
| | See [https://github.com/hoverkraft-tech/ci-github-container/blob/main/.github/workflows/docker-build-images.md#outputs](https://github.com/hoverkraft-tech/ci-github-container/blob/main/.github/workflows/docker-build-images.md#outputs). |

<!-- outputs:end -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/docker-base-images
source_path: .github/workflows/prepare-release.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

<!-- header:start -->
Expand Down Expand Up @@ -77,9 +77,9 @@ jobs:

### Workflow Call Inputs

| **Input** | **Description** | **Required** | **Type** | **Default** |
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| **Input** | **Description** | **Required** | **Type** | **Default** |
| ------------- | ---------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| | See [https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job](https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job). | | | |

<!-- inputs:end -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/docker-base-images
source_path: .github/workflows/prune-pull-requests-images-tags.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

<!-- header:start -->
Expand Down Expand Up @@ -81,9 +81,9 @@ jobs:

### Workflow Call Inputs

| **Input** | **Description** | **Required** | **Type** | **Default** |
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| **Input** | **Description** | **Required** | **Type** | **Default** |
| ------------- | ---------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| | See [https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job](https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job). | | | |

<!-- inputs:end -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/docker-base-images
source_path: .github/workflows/release.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

<!-- header:start -->
Expand Down Expand Up @@ -106,17 +106,17 @@ jobs:

### Workflow Call Inputs

| **Input** | **Description** | **Required** | **Type** | **Default** |
| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ----------- | -------------------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| | See [https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job](https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job). | | | |
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
| | Can be overridden per image with `images/<image>/build.json`. | | | |
| **Input** | **Description** | **Required** | **Type** | **Default** |
| --------------------------- | -------------------------------------------------------------------------------------- | ------------ | ----------- | -------------------------------- |
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
| | See [https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job](https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job). | | | |
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
| | Can be overridden per image with `images/<image>/build.json`. | | | |
| | See [https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images](https://docs.docker.com/buildx/working-with-buildx/#build-multi-platform-images). | | | |
| **`prerelease`** | Whether the release is a prerelease | **false** | **boolean** | `false` |
| **`prerelease`** | Whether the release is a prerelease | **false** | **boolean** | `false` |

<!-- inputs:end -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: ArgoCD Cmp Hk Deployment
source_repo: hoverkraft-tech/docker-base-images
source_path: images/argocd-cmp-hk-deployment/README.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

# argocd-cmp-hk-deployment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Ci Helm
source_repo: hoverkraft-tech/docker-base-images
source_path: images/ci-helm/README.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

# ci-helm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Codespace Like
source_repo: hoverkraft-tech/docker-base-images
source_path: images/codespace-like/README.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

# codespace-like
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Work
source_repo: hoverkraft-tech/docker-base-images
source_path: images/codespace-like/src/config/user/work/README.md
source_branch: main
source_run_id: 28048445699
last_synced: 2026-06-23T18:40:25.474Z
source_run_id: 28220594715
last_synced: 2026-06-26T06:25:15.506Z
---

# work
Expand Down
Loading
Loading