-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerExec.sh
68 lines (60 loc) · 1.58 KB
/
dockerExec.sh
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/bash
usage () {
echo "Usage: $0 -a HOST -p PORT -l LOG_LEVEL -e PEERS -n NAME"
exit
}
echo_err_help () {
echo "$1" >&2
usage
exit 1
}
# cli options
options="ha:p:l:e:n"
while getopts $options OPTION; do
case $OPTION in
a)
HOST=$OPTARG
;;
p)
PORT=$OPTARG
;;
l)
LOG_LEVEL=$OPTARG
;;
e)
PEERS=$OPTARG
;;
n)
NAME=$OPTARG
;;
h)
usage
;;
\?)
echo_err_help "Unknown option: -$OPTARG"
;;
:)
echo_err_help "Missing option argument for -$OPTARG"
;;
*)
echo_err_help "Unimplemented option: -$OPTARG"
;;
esac
done
shift $((OPTIND - 1))
HOST="${HOST:-0.0.0.0}"
PORT="${PORT:-3001}"
NAME="${NAME:-1}"
echo "Running naivecoin inside docker with the following arguments:
HOST: $HOST
PORT: $PORT
LOG_LEVEL: $LOG_LEVEL
PEERS: $PEERS
NAME: $NAME
"
if [ -z "$HOST" ]; then HOST_ARG=""; else HOST_ARG="-e HOST=$HOST"; fi
if [ -z "$PORT" ]; then PORT_ARG=""; else PORT_ARG="-e PORT=$PORT"; fi
if [ -z "$PEERS" ]; then PEERS_ARG=""; else PEERS_ARG="-e PEERS=$PEERS"; fi
if [ -z "$NAME" ]; then NAME_ARG=""; else NAME_ARG="-e NAME=$NAME"; fi
if [ -z "$LOG_LEVEL" ]; then LOG_LEVEL_ARG=""; else LOG_LEVEL_ARG="-e LOG_LEVEL=$LOG_LEVEL"; fi
docker run -t --rm --name naivechain_$NAME $HOST_ARG $NAME_ARG $PORT_ARG $PEERS_ARG $LOG_LEVEL_ARG -v /$(pwd):/naivecoin -p $PORT:$PORT naivechain