If I use
docker run myimage /bin/bash -c "pwd"
or
docker run -it myimage /bin/bash -c "pwd"
the results are the same. Then, what is the sense of "-it"? I learned that "-i" is for interactive, "-t" is for tty. But those are abstract nouns for me. Could you clarify when "-it" should be used in a "docker run" command?