AlpineLinux basic must have tools

sed -i -e 's/.*PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config && \
sed -i -e 's/.*PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config && \
service sshd restart && \
sed -i -e 's/\#http:\/\/mirror.yandex.ru\/mirrors\/alpine\/v/http:\/\/mirror.yandex.ru\/mirrors\/alpine\/v/g' /etc/apk/repositories && \
apk update && \
apk add wget git nano htop screen curl rsync docker && \
rc-update add docker boot && \
service docker start && \
apk add py-pip && \
pip install docker-compose && \
echo "alias dc='docker-compose'" >> ~/.bash_profile && \
source ~/.bash_profile