@pleri/olam-cli 0.1.87 → 0.1.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/image-digests.json +2 -2
- package/host-cp/compose.yaml +11 -0
- package/package.json +1 -1
package/dist/image-digests.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"auth": "sha256:acd77f9b4b2764841207e6e749e0bd5044843458f789eb5548cb4363d02fb985",
|
|
3
3
|
"devbox": "sha256:edda28d8b75bd1d6aaa599100b97d83260bae05b3e81949c95b2f9192b1cfa04",
|
|
4
|
-
"host-cp": "sha256:
|
|
4
|
+
"host-cp": "sha256:4e8cc568ee28d6ea33bdaa6eb30f2dd03ba55ccf9c57e832a75345db91087a98",
|
|
5
5
|
"mcp-auth": "sha256:e47169ad3fbc9cab216248fecbc56874343a5daab84b1f18d67529b7d415cf95",
|
|
6
6
|
"$schema_version": 1,
|
|
7
|
-
"$published_version": "0.1.
|
|
7
|
+
"$published_version": "0.1.88",
|
|
8
8
|
"$registry": "ghcr.io/pleri"
|
|
9
9
|
}
|
package/host-cp/compose.yaml
CHANGED
|
@@ -175,6 +175,17 @@ services:
|
|
|
175
175
|
CONTAINERS: "1"
|
|
176
176
|
EVENTS: "1"
|
|
177
177
|
EXEC: "1"
|
|
178
|
+
# Allows GET /images/<ref>/json. Needed by version-status.mjs to
|
|
179
|
+
# resolve the baked OLAM_BUILD_SHA of locally-pulled images
|
|
180
|
+
# (host-cp + auth-service + devbox `:latest` tags) so the
|
|
181
|
+
# upgrade comparator can answer "is there a newer image I'd
|
|
182
|
+
# actually swap to?" — see PR #459 for the comparator rewrite
|
|
183
|
+
# and `fetchLatestImageSha`. Without this, both the new
|
|
184
|
+
# comparator AND the pre-existing fetchDevboxImageSha fall back
|
|
185
|
+
# to 'unknown', producing the over-reporting "Upgrade available"
|
|
186
|
+
# banner regression. Socket is mounted :ro so this remains
|
|
187
|
+
# read-only inspect; no container mutation surface.
|
|
188
|
+
IMAGES: "1"
|
|
178
189
|
# tecnativa/docker-socket-proxy 0.3.0 requires POST=1 to allow
|
|
179
190
|
# POST verbs on whitelisted endpoints (exec creation requires
|
|
180
191
|
# POST /containers/<id>/exec + POST /exec/<id>/start). Phase
|