I'm new to docker.
What does the -it means when running the container using docker run -it.
Searched a lot but couldn't get proper documentation.
I'm new to docker.
What does the -it means when running the container using docker run -it.
Searched a lot but couldn't get proper documentation.
The -it instructs Docker to allocate a pseudo-TTY connected to the container’s stdin; creating an interactive bash shell in the container.
docker run --name test -it node:alpine