Hello guys, I am beginner in docker and I have following doubt: when I use the command ‘docker run’ in the following way(without ‘-it’ flag):
docker run image
or
docker run --name container_name image
or
docker run --name container_name image
or
docker run -d -p --name container_name image
every time I use command ‘docker run’ without ‘-it’ flag , when i try to start the container (docker start id/name) he do not start(command: docker start id) I don’t understanding: why?
Thanks in advanced!