We can create docker-entrypoint.sh where place logic of add optional command line arguments via env, for example:
instead of
command: --http-port=80 --max-connections=3000
use env like this:
environment:
HTTP_PORT: 80
MAX_CONNECTIONS: 3000
What do you think about this feature?
We can create
docker-entrypoint.shwhere place logic of add optional command line arguments via env, for example:instead of
use env like this:
What do you think about this feature?