Usually, the containerized services are suppose to run in foreground, no forking. We are using postfix start and a loop which babysits the process, which is kind of odd.
When checking Docker Hub and looking at existing solutions, everyone is using supervisord and using some kind of hacks. The only solution I really liked is this one -- invoking master program directly. Is that a better solution?
Usually, the containerized services are suppose to run in foreground, no forking. We are using
postfix startand a loop which babysits the process, which is kind of odd.When checking Docker Hub and looking at existing solutions, everyone is using supervisord and using some kind of hacks. The only solution I really liked is this one -- invoking master program directly. Is that a better solution?