dotfiles/docker_files/awscli/install.sh
2026-05-22 14:05:39 -04:00

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