I want to try out installing a program inside of Ubuntu in docker,
So I just run directly from the command prompt
docker run --name ubuntu_test ubuntu:16.04
docker exec -it ubuntu_test bash
but it doesn't work, it says container not running? how can I run the bash without setting up a dockerfile? (I tried using dockerfile, but it doesn't work because of interactive installer problem)
So I thought maybe directly install it from the bash could work.
