You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When extending the base image, `source kubedock_setup` should be called in the new image's entrypoint to set up kubedock support. This sets up a wrapper for podman to use kubedock for the following podman commands if the `KUBEDOCK_ENABLED` env variable is set to `true`:
86
-
```
91
+
92
+
```text
87
93
podman run
88
94
podman ps
89
95
podman exec
@@ -97,7 +103,7 @@ podman stop
97
103
podman start
98
104
```
99
105
100
-
An example is available in the Universal Developer Image dockerfile[here](https://github.com/devfile/developer-images/blob/main/universal/ubi9/entrypoint.sh#L3).
106
+
An example is available in the [Universal Developer Image dockerfile](https://github.com/devfile/developer-images/blob/main/universal/ubi9/entrypoint.sh#L3).
101
107
102
108
## Developer Universal Image
103
109
@@ -106,6 +112,7 @@ An example is available in the Universal Developer Image dockerfile [here](https
@@ -270,25 +282,28 @@ The workflows support using custom container registries through the `REGISTRY` e
270
282
**Default behavior:** Images are published to `quay.io/devfile`
271
283
272
284
**To override in a fork:**
285
+
273
286
1. Go to your repository **Settings** → **Secrets and Variables** → **Actions** → **Variables**
274
287
2. Add a repository variable: `REGISTRY` = `your-registry.com/your-namespace`
275
288
3. All workflows will automatically use your custom registry
276
289
277
290
**Example registry formats:**
291
+
278
292
-`quay.io/youruser`
279
-
-`ghcr.io/youruser`
293
+
-`ghcr.io/youruser`
280
294
-`docker.io/youruser`
281
295
-`your-private-registry.com/namespace`
282
296
283
297
# Builds
284
298
285
299
This repo contains [actions](https://github.com/devfile/developer-images/actions), including:
286
-
*[](https://github.com/devfile/developer-images/actions/workflows/ubi9-build.yaml)
287
-
*[](https://github.com/devfile/developer-images/actions/workflows/ubi10-build.yaml)
288
300
289
-
Downstream builds can be found at the link below, which is _internal to Red Hat_. Stable builds can be found by replacing the 3.x with a specific version like 3.2.
301
+
-[](https://github.com/devfile/developer-images/actions/workflows/ubi9-build.yaml)
302
+
-[](https://github.com/devfile/developer-images/actions/workflows/ubi10-build.yaml)
303
+
304
+
Downstream builds can be found at the link below, which is _internal to Red Hat_. Stable builds can be found by replacing the 3.x with a specific version like 3.2.
0 commit comments