Merge pull request #16 from shevron/patch-1
Fix check for `docker-entrypoint.d`
This commit is contained in:
commit
b037fe0199
|
@ -3,7 +3,7 @@
|
||||||
python prerun.py
|
python prerun.py
|
||||||
|
|
||||||
# Run any startup scripts provided by images extending this one
|
# Run any startup scripts provided by images extending this one
|
||||||
if [[ -d "docker-entrypoint.d" ]]
|
if [[ -d "/docker-entrypoint.d" ]]
|
||||||
then
|
then
|
||||||
for f in /docker-entrypoint.d/*; do
|
for f in /docker-entrypoint.d/*; do
|
||||||
case "$f" in
|
case "$f" in
|
||||||
|
|
Loading…
Reference in New Issue