We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6efea76 commit f3fc94dCopy full SHA for f3fc94d
init-plain/usr/local/bin/entrypoint.sh
@@ -13,14 +13,6 @@ set -e
13
if [[ -z ${SKIP_ENTRYPOINTS} ]];then
14
if [[ "X${ENTRYPOINTS_DIR}" != "X" ]];then
15
if [[ -d ${ENTRYPOINTS_DIR} ]];then
16
- for x in $(find /opt/entry/ -type f -perm /u+x |sort);do
17
- qecho "> execute entrypoint '${x}'"
18
- if [[ "$x" == *.env ]];then
19
- source ${x}
20
- else
21
- ${x}
22
- fi
23
- done
24
for x in $(find ${ENTRYPOINTS_DIR} -type f -perm /u+x |sort);do
25
qecho "> execute entrypoint '${x}'"
26
if [[ "$x" == *.env ]];then
0 commit comments