I've noticed that docker-compose run has command-line input argument functionality with the -e flag, where running
docker-compose run -e ARG1="val1" -e ARG2="val2"
is valid. I'm however using docker-compose up, where the flag is not included. I've found a way to include a single variable:
ARG1="val1" docker-compose up
but how do I add multiple? I've tried separating by comma, semicolon, and others, but there seems to be no way to pass more than one command line argument to docker-compose. I also understand that I can add multiple such values into an .env file, but input in the command line is much more convenient for my use case. Any suggestions?