Make the Docker image more user-friendly by starting up JMX proxy in the background and install Scylla tools in the image. Also add a welcome banner like we have with our AMI so that users have pointers to nodetool and cqlsh, as well as our documentation. Message-Id: <1460376059-3678-1-git-send-email-penberg@scylladb.com>
21 lines
617 B
Bash
21 lines
617 B
Bash
echo
|
|
echo ' _____ _ _ _____ ____ '
|
|
echo ' / ____| | | | | __ \| _ \ '
|
|
echo ' | (___ ___ _ _| | | __ _| | | | |_) |'
|
|
echo ' \___ \ / __| | | | | |/ _` | | | | _ < '
|
|
echo ' ____) | (__| |_| | | | (_| | |__| | |_) |'
|
|
echo ' |_____/ \___|\__, |_|_|\__,_|_____/|____/ '
|
|
echo ' __/ | '
|
|
echo ' |___/ '
|
|
echo ''
|
|
echo ''
|
|
echo 'Nodetool:'
|
|
echo ' nodetool help'
|
|
echo 'CQL Shell:'
|
|
echo ' cqlsh'
|
|
echo 'More documentation available at: '
|
|
echo ' http://www.scylladb.com/doc/'
|
|
echo
|
|
|
|
export CQLSH_HOST=$(hostname -i)
|