When I run a busybox container with '-t' flag, it remains in "Running" state but without the "-t" flag, the container goes to "exit" state. How does -t flag effect container state?
$ docker run -d --name mybzy busybox -> container exits
$ docker run -dt --name mybzy1 busybox -> container keeps running