mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 03:44:57 -04:00
24 lines
323 B
Shell
24 lines
323 B
Shell
|
|
cat > ../bin/yq <<EOF
|
|
yq () {
|
|
docker run \\
|
|
--rm \\
|
|
--net none \\
|
|
--pid host \\
|
|
--name yq \\
|
|
--entrypoint "yq" \\
|
|
-i \\
|
|
\${DOCKER_REPO_PREFIX}/yq "\$@"
|
|
}
|
|
|
|
jq () {
|
|
docker run \\
|
|
--rm \\
|
|
--net none \\
|
|
--pid host \\
|
|
--name yq \\
|
|
--entrypoint "jq \\
|
|
-i \\
|
|
\${DOCKER_REPO_PREFIX}/yq "\$@"
|
|
}
|
|
EOF
|