Added '-rm' docker flag to remove the containers

Also, added a handy alias just in case.
This commit is contained in:
Eduardo Minguez Perez 2019-06-07 14:16:24 +02:00 committed by Mike Farah
parent e9b8265ca3
commit be532bf2fe

View File

@ -51,13 +51,19 @@ go get gopkg.in/mikefarah/yq.v2
Oneshot use: Oneshot use:
```bash ```bash
docker run -v ${PWD}:/workdir mikefarah/yq yq [flags] <command> FILE... docker run -rm -v ${PWD}:/workdir mikefarah/yq yq [flags] <command> FILE...
``` ```
Run commands interactively: Run commands interactively:
```bash ```bash
docker run -it -v ${PWD}:/workdir mikefarah/yq sh docker run -rm -it -v ${PWD}:/workdir mikefarah/yq sh
```
It can be useful to have a bash alias to avoid typing the whole docker command:
```bash
alias yq="docker run -rm -v ${PWD}:/workdir mikefarah/yq yq"
``` ```
## Features ## Features