Docker Run vs Exec
Docker Run
docker run creates a new container from an image. If run without the -d flag, the container will stop when interrupted. For example, if we run Redis v6.0.9 like this
docker run redis:6.0.9
We will get an output similar to:
1:C 11 Jan 2021...
vicradon.hashnode.dev3 min read