forked from redsymbol/json2yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_aliases
34 lines (31 loc) · 795 Bytes
/
bash_aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
json2yaml() { # Convert json to yaml || programming
context="/local/path/to/this/directory"
image_exists=$(docker images --filter reference=json2yaml:* --format "{{ .Tag }}" | wc -l)
if [ $image_exists == 0 ]; then
(docker build -t json2yaml "${context}" 2>&1>/dev/null)
fi
OVERRIDEN_ENTRYPOINT=''
if [[ "$1" == '--reverse' ]]; then
OVERRIDEN_ENTRYPOINT='--entrypoint /code/json2yaml/yaml2json'
shift;
fi
ARGS="$@"
if [[ -z $ARGS ]]; then
docker run \
--rm \
--user $(id -u):$(id -g) \
--interactive \
${OVERRIDEN_ENTRYPOINT} \
json2yaml
else
docker run \
--rm \
--user $(id -u):$(id -g) \
--workdir $PWD \
--volume $PWD:$PWD \
--interactive \
${OVERRIDEN_ENTRYPOINT} \
json2yaml $ARGS
fi
}
alias yaml2json = "json2yaml --reverse $@"