mirror of
https://github.com/gogs/gogs.git
synced 2025-05-12 02:20:49 +00:00
9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -f ./setup; then
|
|
# shellcheck disable=SC2039,SC1091
|
|
source ./setup
|
|
fi
|
|
|
|
exec gosu root /usr/sbin/sshd -D -f /app/gogs/docker/sshd_config
|