Skip to content

Latest commit

 

History

History

yq

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

yq

scratch-based dockerization of yq, the command-line YAML processor.

As the site says:

yq uses jq like syntax but works with yaml files as well as json

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

The following shell function can assist in running this image interactively:

yq() {
  docker run \
    --rm \
    --interactive \
    --tty \
    --volume "$(pwd):/work" \
    "backplane/yq" \
    "$@"
}