ligo/vendors/tezos-modded/scripts/docker/entrypoint.sh

67 lines
1.3 KiB
Bash
Raw Normal View History

2018-01-29 21:26:27 +04:00
#!/bin/sh
set -e
bin_dir="$(cd "$(dirname "$0")" && echo "$(pwd -P)/")"
: ${BIN_DIR:="/usr/local/bin"}
2018-01-29 21:26:27 +04:00
: ${DATA_DIR:="/var/run/tezos"}
: ${NODE_HOST:="node"}
: ${NODE_RPC_PORT:="8732"}
2018-01-29 21:26:27 +04:00
2018-07-18 22:27:06 +04:00
: ${PROTOCOL:="unspecified-PROTOCOL-variable"}
node="$BIN_DIR/tezos-node"
client="$BIN_DIR/tezos-client"
admin_client="$BIN_DIR/tezos-admin-client"
baker="$BIN_DIR/tezos-baker-$PROTOCOL"
endorser="$BIN_DIR/tezos-endorser-$PROTOCOL"
accuser="$BIN_DIR/tezos-accuser-$PROTOCOL"
signer="$BIN_DIR/tezos-signer"
2018-01-29 21:26:27 +04:00
client_dir="$DATA_DIR/client"
node_dir="$DATA_DIR/node"
node_data_dir="$node_dir/data"
2018-01-29 21:26:27 +04:00
. "$bin_dir/entrypoint.inc.sh"
command=${1:-tezos-node}
shift 1
case $command in
tezos-node)
launch_node "$@"
;;
tezos-baker)
launch_baker "$@"
;;
tezos-endorser)
launch_endorser "$@"
;;
2018-06-25 19:39:36 +04:00
tezos-accuser)
launch_accuser "$@"
;;
2018-01-29 21:26:27 +04:00
tezos-client)
configure_client
exec "$client" "$@"
;;
tezos-admin-client)
configure_client
exec "$admin_client" "$@"
;;
2018-07-07 06:16:07 +04:00
tezos-signer)
exec "$signer" "$@"
;;
2018-01-29 21:26:27 +04:00
*)
cat <<EOF
Available commands:
- tezos-node [args]
- tezos-client [args]
- tezos-baker [keys]
- tezos-endorser [keys]
2018-07-07 06:16:07 +04:00
- tezos-signer [args]
2018-01-29 21:26:27 +04:00
EOF
;;
esac