It seems that this command is doing the trick :
systemctl --user restart docker-desktop
Answer from vincenth on askubuntu.comshell - How to start Docker from command line on Linux? - Stack Overflow
linux - How to get Docker desktop on Ubuntu? - Stack Overflow
Should I install Docker Desktop for Linux?
Docker desktop -- how to run a command?
Videos
Currently, docker desktop supported Mac, Windows only.
For ubuntu, you can use Docker Engine with Portainer (Web-based).
Other options:
- LazyDocker
2022 Update: Docker Desktop for Linux (Tech Preview)
Get more info about it at this issuse It is currently only available as a .deb for Ubuntu 21.04, 21.10 and Debian distributions.
Docker announced in a blog post (16-Sep-2021):
Docker Desktop for Linux will be available to all developers through the free Docker Personal and paid Docker Pro, Team, and Business subscriptions. If you’re interested in early access please sign-up for our developer preview program.
That's good news! While the Desktop features are not really "required" on Linux, I've grown to like the user interface and not needing to behave differently on the Linux platform is very welcome!
Should I install Docker Desktop for ubuntu or install it with apt?
Is there a performance difference?
I have the following docker command:
docker run --name kavita -p 5000:5000 \
-v /kavita/data/directory:/kavita/config \
--restart unless-stopped \
-d jvmilazz0/kavita:latestI want to run this command in Docker Desktop, not my terminal. How can this be done?