Docker (Guide to Containerization): Part 2
Inputs
In Docker, the -i parameter is used to attach the standard input (stdin) of the host to a running container. This allows you to provide input to a process running inside the container as if you were interacting with it directly.
To use the -i ...