I am very new to Docker and also to Unix/Linux world. I have been using docker to build my images and spin up some containers and do understand the concept of containerization fairly well. However, sometimes I do see some people spinning up containers using flags like :
docker run -i -t imagename
I tried to understand the value of it and came across docker documentation here : https://docs.docker.com/v1.13/engine/reference/run/
and it has some very arcane explainations like
-i: Keep STDIN open even if not attached
-t: Allocate a pseudo-tty
what does it even mean?