diff --git a/container/ntp-server/start-server.sh b/container/ntp-server/start-server.sh new file mode 100755 index 0000000..bf87bd5 --- /dev/null +++ b/container/ntp-server/start-server.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved.
+/usr/sbin/ntpd -g -l /var/log/ntpstats/ntpd.log
+exec "$@"
why add this file, if want execute shell command in ntp-server, can write in Dockerfile, use like this
CMD ./start-server.sh
Thanks, Yinsi