mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-09-26 21:01:15 +08:00
11 lines
224 B
Bash
11 lines
224 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Init vars
|
|
if [[ -z "$SERVICE_SSH_OPTS" ]]; then SERVICE_SSH_OPTS=""; fi
|
|
|
|
source /opt/docker/bin/config.sh
|
|
|
|
includeScriptDir "/opt/docker/bin/service.d/ssh.d/"
|
|
|
|
exec /usr/sbin/sshd -D $SERVICE_SSH_OPTS
|