Posted On March 31, 2019

Docker Alpine OpenSSH-Client

kimconnect 0 comments
blog.KimConnect.com >> Linux , Virtualization >> Docker Alpine OpenSSH-Client
# 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

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Disable Built-in Bluetooth Device in Linux Mint

1. List devices: lsusb2. Make note of bluetooth devices (example):8088:0a2b Intel Corp. Bluetooth wireless interface0bdb:a750…

Amazon Web Services (AWS) Disaster Recovery

Features: 1. Multi-regions: compliance with Section 404 of COBIT requirements 2. Amazon S3 with redundancy, versioning, multi-factor…

Installing Apache on Centos 7

The easy methodsudo yum clean allsudo yum -y updatesudo yum -y install httpd php-pearsudo firewall-cmd…