# Run Alpine
docker run --privileged --restart always --name alpine alpine:latest

# Run these commands from inside container
docker run -it --rm ssh-client /bin/ash
apk update && apk add --no-cache openssh-client
echo '172.x.x.x ssh.kimconnect.com' >> /etc/hosts

# install telnet
apk add busybox-extras
busybox-extras telnet

# Install shellinabox
apk add --no-cache shellinabox --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted

# mysql-client
apk add --no-cache mysql-client --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted