@ferrflow/linux-arm64 7.7.0 → 7.7.1
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 +8 -1
- package/bin/ferrflow +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,7 +69,14 @@ npm install -D ferrflow
|
|
|
69
69
|
**Docker**
|
|
70
70
|
|
|
71
71
|
```bash
|
|
72
|
-
docker run ghcr.io/ferrlabs/ferrflow:latest check
|
|
72
|
+
docker run --rm -v "$PWD:/repo" ghcr.io/ferrlabs/ferrflow:latest check
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
The image runs as a non-root user (`ferrflow`, uid 1000) and works on `/repo`.
|
|
76
|
+
If your checkout is owned by a different uid, pass your own:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
docker run --rm -u "$(id -u):$(id -g)" -v "$PWD:/repo" ghcr.io/ferrlabs/ferrflow:latest check
|
|
73
80
|
```
|
|
74
81
|
|
|
75
82
|
**Pre-built binaries**
|
package/bin/ferrflow
CHANGED
|
Binary file
|
package/package.json
CHANGED