I want to extend ELS container on create . With Postgres or Mysql, .. I have folder that i can user to customise Container on runtime. Exemple of code: for f in /docker-entrypoint-initdb.d/*; do case "$f" in *.sh) echo "$0: running $f"; . "$f" ;; *.sql) echo "$0: running $f"; "${mysql[@]}" < "$f"; echo ;; *.sql.gz) echo "$0: running $f"; gunzip -c "$f" | "${mysql[@]}"; echo ;; *) echo "$0: ignoring $f" ;; esac echo done Is it possible to add this on your docker-entrypoint?