2022-03-18 18:01:47 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# entrypoint for scribe Docker image
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
if [ -z "$HUB_COMMAND" ]; then
|
2022-05-18 19:09:42 +02:00
|
|
|
echo "HUB_COMMAND env variable must be scribe, herald, or scribe-elastic-sync"
|
2022-03-18 18:01:47 +01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "$HUB_COMMAND" in
|
2022-03-22 03:47:11 +01:00
|
|
|
scribe ) exec /home/lbry/.local/bin/scribe "$@" ;;
|
2022-05-18 21:08:56 +02:00
|
|
|
herald ) exec /home/lbry/.local/bin/herald "$@" ;;
|
2022-04-22 02:00:19 +02:00
|
|
|
scribe-elastic-sync ) exec /home/lbry/.local/bin/scribe-elastic-sync "$@" ;;
|
2022-05-18 19:09:42 +02:00
|
|
|
* ) "HUB_COMMAND env variable must be scribe, herald, or scribe-elastic-sync" && exit 1 ;;
|
2022-03-18 18:01:47 +01:00
|
|
|
esac
|