Half of the setup is in the startup.sh… can't this be done with the Dockerfile to reduce start up time and differences storage?
Additionally the baseimage goes through a whole rig-a-ma-role for handing init, and though you've left it as the command, this command is passed to the entrypoint which is startup.sh and it ignores this argument. Right?
I think it would be better if you'd follow the phusion description of how to add a daemon startup to the system, and leave the command and entry point alone (for that image). Or change the base image and use docker new built in --init and tini and such.
Otherwise, thanks for making a setup that works.
Half of the setup is in the startup.sh… can't this be done with the Dockerfile to reduce start up time and differences storage?
Additionally the baseimage goes through a whole rig-a-ma-role for handing init, and though you've left it as the command, this command is passed to the entrypoint which is startup.sh and it ignores this argument. Right?
I think it would be better if you'd follow the phusion description of how to add a daemon startup to the system, and leave the command and entry point alone (for that image). Or change the base image and use docker new built in
--initand tini and such.Otherwise, thanks for making a setup that works.