Skip to content

Commit e890a88

Browse files
committed
Improved the docker command example in the README
for better readability. Signed-off-by: Vicky-Goldin <[email protected]>
1 parent bf361dc commit e890a88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ docker run --rm -u "$(id -u):$(id -g)" ghcr.io/fybrik/taxonomy-cli:master help
2727
Or compiling a `./base.json` file with a `./layer.yaml` into a `./taxonomy.json` output:
2828

2929
```bash
30-
docker run --rm -u "$(id -u):$(id -g)" -v ${PWD}:/local \
30+
docker run --rm -u "$(id -u):$(id -g)" --volume ${PWD}:/local --workdir /local/ \
3131
ghcr.io/fybrik/taxonomy-cli:master compile \
32-
-o /local/taxonomy.json \
33-
-b /local/base.json \
34-
/local/layer.yaml
32+
-o ./taxonomy.json \
33+
-b ./base.json \
34+
./layer.yaml
3535
```

0 commit comments

Comments
 (0)