I have a bunch of sql scripts in /docker-entrypoint-initdb.d/
which I am developing in a Docker container FROM ubuntu/mysql:8.0-22.04_beta
The container will not start if one of the scripts causes an error.
I want the container to continue to start even if an entrypoint script fails, then I want to get a shell in and poke around.
How can I tell it to do this?