We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf361dc commit e890a88Copy full SHA for e890a88
README.md
@@ -27,9 +27,9 @@ docker run --rm -u "$(id -u):$(id -g)" ghcr.io/fybrik/taxonomy-cli:master help
27
Or compiling a `./base.json` file with a `./layer.yaml` into a `./taxonomy.json` output:
28
29
```bash
30
-docker run --rm -u "$(id -u):$(id -g)" -v ${PWD}:/local \
+docker run --rm -u "$(id -u):$(id -g)" --volume ${PWD}:/local --workdir /local/ \
31
ghcr.io/fybrik/taxonomy-cli:master compile \
32
- -o /local/taxonomy.json \
33
- -b /local/base.json \
34
- /local/layer.yaml
+ -o ./taxonomy.json \
+ -b ./base.json \
+ ./layer.yaml
35
```
0 commit comments