1
To resolve basically uninstalled according to the Fedora documentation.
https://docs.docker.com/engine/installation/linux/fedora/#Uninstall-Docker
Then I ran the following command
sudo pkcon refresh force -c -1
And reinstalled
https://docs.docker.com/engine/installation/linux/fedora/#install-Docker-ce
Now without turning the command
sudo dnf config-manager --set-enabled docker-ce-edge
using only the stable version
No need to reinstall. Your container’s CMD is /bin/bash, so you need to run -it to run the terminal. This happens when you run a Docker run and after the parameter image name, you define /bin/bash or when you do not determine any CMD in the case of a build your.
– Luiz Carlos Faria
So basically I’d have to run Ubuntu with a bash (
docker run -it ubuntu bash
) ?– Guilherme Cesar Medeiros