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

Linux Swapfile

There's a more updated post here. Setup Swap on CentOS Localhost:# Check memory & swap…

PowerShell: Virtual Machine Snapshots Report from VMM Servers

# vmSnapshotReport.ps1 # Requirements: # - Credentials to access VMM Servers with Administrator role #…

Linux: Installing Docker Community Edition on Centos 8

# Switch into Sudo mode sudo su # Disable the built-in firewall as it will…