1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/openssh/docker-entrypoint.sh

13 lines
130 B
Bash
Raw Normal View History

2016-07-01 16:15:28 +02:00
#!/bin/sh
cd /root/.ssh
if [ -d keys ]
then
cat keys/*.pub > authorized_keys
fi
ssh-keygen -A
exec /usr/sbin/sshd -D "$@"