You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 21, 2021. It is now read-only.
IOOS uses phusion/baseimage as their base image which provides a my_init script that acts as a real init process. This allows derivative images to drop init/configuration scripts in /etc/my_init.d for standardized init.
Most of our entrypoints accept a --wait-for-dependencies flag that triggers netcat to look for dependent web services. This is somewhat of an anti-pattern, because in most cases the app should be handling the re-connect, rather than startup script. A manual restart shouldn't be necessary to recover from a connection error.
Entrypoints should end with exec "$@" so that you can pass shell commands to the container. The Dockerfile should contain a default CMD that is appropriate so in most cases you don't need to pass a custom command.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Conversation to address the entrypoint for our containers.
The text was updated successfully, but these errors were encountered: