Docker: EXTRA_CMD environment variable for HA?

I run some docker images, that provide an environment variable for extra command line arguments, that are passed to the startup command when running a docker container.

For example the AppDaemon docker image provides the EXTRA_CMD environment variable for additional command line arguments passed to the appdaemon executable.

Is there anything similar for the official HA docker image? Especially I’d like to enable HA’s builtin log rotation, i.e. adding the command line argument log-rotate-days on startup.

You can look at docker file for ENV

https://github.com/home-assistant/home-assistant/blob/dev/Dockerfile.

# Uncomment any of the following lines to disable the installation.
#ENV INSTALL_TELLSTICK no
#ENV INSTALL_OPENALPR no
#ENV INSTALL_FFMPEG no
#ENV INSTALL_LIBCEC no
#ENV INSTALL_PHANTOMJS no
#ENV INSTALL_SSOCR no