Commit b4cf382
authored
Eliminate misleading initialization message
When the container starts, the following output is produced:
```
Starting Oracle Net Listener.
Starting Oracle Database 11g Express Edition instance.
/usr/sbin/startup.sh: ignoring /docker-entrypoint-initdb.d/*
```
It looks like it ignores the entire init directory, however, it only means that it's empty, and the `*` symbol in the `for` loop is not resolved to any list of files, therefore it's used as is and is ignored since it's not a `*.sh` or `*.sql` file.
With the fix, the script will ignore the unresolved wildcard.1 parent 58f8df0 commit b4cf382
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| 33 | + | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
| |||
0 commit comments