Running containers for a bash session
Let's say you want a bash session in a brand new Centos 8 container. You can
have that by running a detached container running in the background:
docker run -d -t --name centos centos:8
And then, by exec-ing bash in it:
docker exec -it centos bash
This works with