Skip to content

Commit 7d990df

Browse files
docs(hoverkraft-tech/docker-base-images): update documentation
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b76c9d8 commit 7d990df

16 files changed

Lines changed: 93 additions & 94 deletions

File tree

application/docs/projects/ci-cd-tools/docker-base-images/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
source_repo: hoverkraft-tech/docker-base-images
33
source_path: CONTRIBUTING.md
44
source_branch: main
5-
source_run_id: 28048445699
6-
last_synced: 2026-06-23T18:40:25.474Z
5+
source_run_id: 28220594715
6+
last_synced: 2026-06-26T06:25:15.506Z
77
---
88

99
# Contributing

application/docs/projects/ci-cd-tools/docker-base-images/actions/get-available-images/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Get Available Images
33
source_repo: hoverkraft-tech/docker-base-images
44
source_path: actions/get-available-images/README.md
55
source_branch: main
6-
source_run_id: 28048445699
7-
last_synced: 2026-06-23T18:40:25.474Z
6+
source_run_id: 28220594715
7+
last_synced: 2026-06-26T06:25:15.506Z
88
---
99

1010
<!-- header:start -->

application/docs/projects/ci-cd-tools/docker-base-images/actions/should-build-images/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Should Build Images
33
source_repo: hoverkraft-tech/docker-base-images
44
source_path: actions/should-build-images/README.md
55
source_branch: main
6-
source_run_id: 28048445699
7-
last_synced: 2026-06-23T18:40:25.474Z
6+
source_run_id: 28220594715
7+
last_synced: 2026-06-26T06:25:15.506Z
88
---
99

1010
<!-- header:start -->
@@ -58,11 +58,11 @@ Check if some files have changed requiring the build of the given images.
5858
5959
## Inputs
6060
61-
| **Input** | **Description** | **Required** | **Default** |
62-
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ----------- |
63-
| **`images`** | Image names located in the 'images' folder. | **true** | - |
64-
| | Formatted as a JSON array. | | |
65-
| | Example: `["php-8", "nodejs-24"]` | | |
61+
| **Input** | **Description** | **Required** | **Default** |
62+
| -------------- | ----------------------------------------------------------------------------------------------------------------- | ------------ | ----------- |
63+
| **`images`** | Image names located in the 'images' folder. | **true** | - |
64+
| | Formatted as a JSON array. | | |
65+
| | Example: `["php-8", "nodejs-24"]` | | |
6666
| **`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** | - |
6767

6868
<!-- inputs:end -->

application/docs/projects/ci-cd-tools/docker-base-images/github/workflows/continuous-integration.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
source_repo: hoverkraft-tech/docker-base-images
33
source_path: .github/workflows/continuous-integration.md
44
source_branch: main
5-
source_run_id: 28048445699
6-
last_synced: 2026-06-23T18:40:25.474Z
5+
source_run_id: 28220594715
6+
last_synced: 2026-06-26T06:25:15.506Z
77
---
88

99
<!-- header:start -->
@@ -172,17 +172,17 @@ jobs:
172172
173173
### Workflow Call Inputs
174174
175-
| **Input** | **Description** | **Required** | **Type** | **Default** |
176-
| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- | -------------------------------- |
177-
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
178-
| | 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). | | | |
179-
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
180-
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
181-
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
182-
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
183-
| | Can be overridden per image with `images/<image>/build.json` or an image object in `images`. | | | |
184-
| | 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). | | | |
185-
| **`test-image-tag`** | Tag of the published `testcontainers-node` runner image to use for tests. | **false** | **string** | `latest` |
175+
| **Input** | **Description** | **Required** | **Type** | **Default** |
176+
| --------------------------- | -------------------------------------------------------------------------------------------- | ------------ | ---------- | -------------------------------- |
177+
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
178+
| | 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). | | | |
179+
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
180+
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
181+
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
182+
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
183+
| | Can be overridden per image with `images/<image>/build.json` or an image object in `images`. | | | |
184+
| | 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). | | | |
185+
| **`test-image-tag`** | Tag of the published `testcontainers-node` runner image to use for tests. | **false** | **string** | `latest` |
186186
187187
<!-- inputs:end -->
188188
@@ -204,9 +204,9 @@ jobs:
204204
205205
## Outputs
206206
207-
| **Output** | **Description** |
208-
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
209-
| **`built-images`** | Built images data. |
207+
| **Output** | **Description** |
208+
| ------------------ | ------------------------------------------------------------------------------------------------------------------------ |
209+
| **`built-images`** | Built images data. |
210210
| | 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). |
211211
212212
<!-- outputs:end -->

application/docs/projects/ci-cd-tools/docker-base-images/github/workflows/prepare-release.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
source_repo: hoverkraft-tech/docker-base-images
33
source_path: .github/workflows/prepare-release.md
44
source_branch: main
5-
source_run_id: 28048445699
6-
last_synced: 2026-06-23T18:40:25.474Z
5+
source_run_id: 28220594715
6+
last_synced: 2026-06-26T06:25:15.506Z
77
---
88

99
<!-- header:start -->
@@ -77,9 +77,9 @@ jobs:
7777
7878
### Workflow Call Inputs
7979
80-
| **Input** | **Description** | **Required** | **Type** | **Default** |
81-
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
82-
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
80+
| **Input** | **Description** | **Required** | **Type** | **Default** |
81+
| ------------- | ---------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
82+
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
8383
| | 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). | | | |
8484

8585
<!-- inputs:end -->

application/docs/projects/ci-cd-tools/docker-base-images/github/workflows/prune-pull-requests-images-tags.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
source_repo: hoverkraft-tech/docker-base-images
33
source_path: .github/workflows/prune-pull-requests-images-tags.md
44
source_branch: main
5-
source_run_id: 28048445699
6-
last_synced: 2026-06-23T18:40:25.474Z
5+
source_run_id: 28220594715
6+
last_synced: 2026-06-26T06:25:15.506Z
77
---
88

99
<!-- header:start -->
@@ -81,9 +81,9 @@ jobs:
8181
8282
### Workflow Call Inputs
8383
84-
| **Input** | **Description** | **Required** | **Type** | **Default** |
85-
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
86-
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
84+
| **Input** | **Description** | **Required** | **Type** | **Default** |
85+
| ------------- | ---------------------------------------------------------------------------------- | ------------ | ---------- | ------------------- |
86+
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
8787
| | 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). | | | |
8888

8989
<!-- inputs:end -->

application/docs/projects/ci-cd-tools/docker-base-images/github/workflows/release.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
source_repo: hoverkraft-tech/docker-base-images
33
source_path: .github/workflows/release.md
44
source_branch: main
5-
source_run_id: 28048445699
6-
last_synced: 2026-06-23T18:40:25.474Z
5+
source_run_id: 28220594715
6+
last_synced: 2026-06-26T06:25:15.506Z
77
---
88

99
<!-- header:start -->
@@ -106,17 +106,17 @@ jobs:
106106
107107
### Workflow Call Inputs
108108
109-
| **Input** | **Description** | **Required** | **Type** | **Default** |
110-
| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ----------- | -------------------------------- |
111-
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
112-
| | 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). | | | |
113-
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
114-
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
115-
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
116-
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
117-
| | Can be overridden per image with `images/<image>/build.json`. | | | |
109+
| **Input** | **Description** | **Required** | **Type** | **Default** |
110+
| --------------------------- | -------------------------------------------------------------------------------------- | ------------ | ----------- | -------------------------------- |
111+
| **`runs-on`** | JSON array of runner(s) to use. | **false** | **string** | `["ubuntu-latest"]` |
112+
| | 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). | | | |
113+
| **`oci-registry`** | OCI registry where to pull and push images. | **false** | **string** | `ghcr.io` |
114+
| **`oci-registry-username`** | Username used to log against the OCI registry. | **false** | **string** | `${{ github.repository_owner }}` |
115+
| | See [https://github.com/docker/login-action#usage](https://github.com/docker/login-action#usage). | | | |
116+
| **`platforms`** | JSON array of platforms to build images for by default. | **false** | **string** | `["linux/amd64","linux/arm64"]` |
117+
| | Can be overridden per image with `images/<image>/build.json`. | | | |
118118
| | 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). | | | |
119-
| **`prerelease`** | Whether the release is a prerelease | **false** | **boolean** | `false` |
119+
| **`prerelease`** | Whether the release is a prerelease | **false** | **boolean** | `false` |
120120

121121
<!-- inputs:end -->
122122

application/docs/projects/ci-cd-tools/docker-base-images/images/argocd-cmp-hk-deployment/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: ArgoCD Cmp Hk Deployment
33
source_repo: hoverkraft-tech/docker-base-images
44
source_path: images/argocd-cmp-hk-deployment/README.md
55
source_branch: main
6-
source_run_id: 28048445699
7-
last_synced: 2026-06-23T18:40:25.474Z
6+
source_run_id: 28220594715
7+
last_synced: 2026-06-26T06:25:15.506Z
88
---
99

1010
# argocd-cmp-hk-deployment

application/docs/projects/ci-cd-tools/docker-base-images/images/ci-helm/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Ci Helm
33
source_repo: hoverkraft-tech/docker-base-images
44
source_path: images/ci-helm/README.md
55
source_branch: main
6-
source_run_id: 28048445699
7-
last_synced: 2026-06-23T18:40:25.474Z
6+
source_run_id: 28220594715
7+
last_synced: 2026-06-26T06:25:15.506Z
88
---
99

1010
# ci-helm

application/docs/projects/ci-cd-tools/docker-base-images/images/codespace-like/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Codespace Like
33
source_repo: hoverkraft-tech/docker-base-images
44
source_path: images/codespace-like/README.md
55
source_branch: main
6-
source_run_id: 28048445699
7-
last_synced: 2026-06-23T18:40:25.474Z
6+
source_run_id: 28220594715
7+
last_synced: 2026-06-26T06:25:15.506Z
88
---
99

1010
# codespace-like

0 commit comments

Comments
 (0)