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
Each [[containers]] block may set an optional `image` to override the
default Docker Hub image, e.g. an internal registry mirror or a locally
loaded offline image. ContainerConfig.Image() returns `image` as-is when
it already carries a tag, otherwise it appends `tag` (or "latest"); the
default localstack/<product>:<tag> is used when `image` is unset.
Refs DEVX-703
Copy file name to clipboardExpand all lines: CLAUDE.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,8 @@ When adding a new command that depends on configuration, wire config initializat
66
66
67
67
Created automatically on first run with defaults. Supports emulator types: `aws`, `snowflake`, and `azure`.
68
68
69
+
Each `[[containers]]` block may set an optional `image` to override the default Docker Hub image (e.g. an internal registry mirror or a locally loaded offline image). `ContainerConfig.Image()` returns `image` as-is when it already carries a tag, otherwise it appends `tag` (or `latest`); the default `localstack/<product>:<tag>` is used when `image` is unset.
70
+
69
71
# Emulator Setup Commands
70
72
71
73
Use `lstk setup <emulator>` to set up CLI integration for an emulator type:
{"untagged custom image defaults to latest", "local-image-name", "", "local-image-name:latest"},
152
+
{"tagged custom image is used as-is", "my-registry.internal/localstack-pro:custom", "latest", "my-registry.internal/localstack-pro:custom"},
153
+
{"registry port is not mistaken for a tag", "my-registry:5000/localstack-pro", "2026.4", "my-registry:5000/localstack-pro:2026.4"},
154
+
{"registry port with explicit tag", "my-registry:5000/localstack-pro:custom", "", "my-registry:5000/localstack-pro:custom"},
155
+
{"digest-pinned image is used as-is", "localstack/localstack-pro@sha256:abc123def456", "2026.4", "localstack/localstack-pro@sha256:abc123def456"},
156
+
{"registry port with digest is used as-is", "my-registry:5000/localstack-pro@sha256:abc123def456", "", "my-registry:5000/localstack-pro@sha256:abc123def456"},
0 commit comments