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
spin up expects OCI references to resolve to artifacts that contain a spin.toml file. It chokes if you pass an OCI reference that resolves to a simple wasi:http/incoming-handler exporter. Instead you have to wkg fetch and then run from the local artifact.
$ spin up --from ghcr.io/bowlofarugula/fluid:0.0.1Error: failed to decode locked app from "/Users/ian/Library/Caches/spin/registry/manifests/ghcr.io/bowlofarugula/fluid/0.0.1/config.json"Caused by: missing field `spin_lock_version` at line 1 column 239
$ wkg oci pull ghcr.io/bowlofarugula/fluid:0.0.1Successfully wrote ghcr.io/bowlofarugula/fluid:0.0.1 to bowlofarugula_fluid.wasm
$ spin up --from bowlofarugula_fluid.wasmServing http://127.0.0.1:3000Available Routes: http-trigger1-component: http://127.0.0.1:3000 (wildcard)I'll update the doc to show the flow Spin expects with spin registry.