mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 11:54:57 -04:00
updates
This commit is contained in:
parent
807b7a4504
commit
d7e2aa1af6
13 changed files with 280 additions and 1 deletions
24
docker_files/awscli/install.sh
Normal file
24
docker_files/awscli/install.sh
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
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
|
||||
Loading…
Reference in a new issue