Answers for "ubuntu says docker is not running"

0

ubuntu dock not showing

This issue might be caused by issues during the upgrade. Try reinstalling Ubuntu dock:

sudo apt purge gnome-shell-extension-ubuntu-dock
sudo apt install --reinstall ubuntu-desktop
This may or may not repair things that apparently went wrong during the upgrade.
Posted by: Guest on March-09-2021
0

Docker - Container is not running

docker pull debian

docker run -t -d --name my_debian debian
e7672d54b0c2

docker ps -a
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
e7672d54b0c2        debian              "bash"              3 minutes ago       Up 3 minutes                            my_debian

#now you can execute command on the container
docker exec -it my_debian bash
root@e7672d54b0c2:/#
Posted by: Guest on June-22-2021

Code answers related to "ubuntu says docker is not running"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language