Is there a way of running in windows command prompt, a "docker run" command over multiple lines e.g. instead of
"docker run -v .. --name .. --entrypoint .. <image_name>"
something like
"docker run
-v. ..
--name ..
--entrypoint ..
<image_name>"
It's becoming a pain to edit! Thanks, Jonny
edit: I've tried adding in ^ command, it doesn't work. Just errors with "docker run" requires at least 1 argument.