Daily Shaarli

All links of one day in a single page.

June 9, 2021

Using SSH keys inside docker container - Stack Overflow

Add the keys and set permissions

RUN echo "$ssh_prv_key" > /root/.ssh/id_rsa && \
echo "$ssh_pub_key" > /root/.ssh/id_rsa.pub && \
chmod 600 /root/.ssh/id_rsa && \
chmod 600 /root/.ssh/id_rsa.pub