hostctl 0.1.49 → 0.1.51

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/README.md CHANGED
@@ -49,6 +49,20 @@ Run straight from npm without installing globally:
49
49
  npx hostctl run core.echo message:hello
50
50
  ```
51
51
 
52
+ ### Containerized CLI (Docker)
53
+
54
+ Build an image and run `hostctl` from a container:
55
+
56
+ ```bash
57
+ docker build -t hostctl .
58
+ docker run --rm -it \
59
+ -v "$PWD:/work" \
60
+ -v "$HOME/.hostctl:/home/node/.hostctl" \
61
+ hostctl --help
62
+ ```
63
+
64
+ Mount SSH keys or AGE identities as needed (for example `-v "$HOME/.ssh:/home/node/.ssh:ro"` and `-e AGE_IDS="~/.hostctl/age/*.priv"`).
65
+
52
66
  ## Bootstrap identities, inventory, and secrets
53
67
 
54
68
  1. **Generate AGE identities**