mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-02 17:50:17 +00:00
11 lines
256 B
Bash
11 lines
256 B
Bash
#!/bin/bash
|
|
## Reference: https://github.com/norwoodj/helm-docs
|
|
set -eux
|
|
CHART_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
echo "$CHART_DIR"
|
|
|
|
echo "Running Helm-Docs"
|
|
docker run \
|
|
-v "$CHART_DIR:/helm-docs" \
|
|
-u $(id -u) \
|
|
jnorwood/helm-docs:latest |