SSH Agent forwarding inside docker compose container
问题 Could not open a connection to your authentication agent. I am following the approach of mounting the $SSH_AUTH_SOCK as a volume, but doing so with compose. Setup ~/.ssh/config Host * ForwardAgent yes Dockerfile: FROM atlashealth/ruby:2.2.2 RUN apt-get update -qq && \ apt-get install -qy build-essential libxml2-dev libxslt1-dev \ g++ qt5-default libqt5webkit5-dev xvfb dbus \ libmysqlclient-dev \ mysql-client openssh-client git && \ # cleanup apt-get clean && \ cd /var/lib/apt/lists && rm -fr