I have added Overmind into my Dockerfile for my Rails application. And have changed the `bin/dev` from foreman to overmind. However it seems that the Overmind process is not cleanly shutdown when the container stops as the `.overmind.sock` file is left. The entrypoint specifies `exec "${@}"` which will be translated to `exec bin/dev` for my application and Overmind is running as pid 1. Is this expected or am I missing something here? Note that the Rails `server.pid` is cleaned up.