Is it correct to say that docker container create --interactive ubuntu is equal to docker container create -a STDIN -a STDOUT -a STDERR --interactive ubuntu?
Is it correct to say that docker container start --interactive <container ID> is equal to docker container start --interactive --attach <container ID>?
I tested the following commands docker container create --interactive --name u8 ubuntu and docker container start --interactive u8 and I can properly interact with the bash shell.