Hey everyone! I just installed Docker on my Linux machine following the official instructions. I heard that Docker Desktop isn't the best option, so I went with the regular installation. Now I'm wondering, where's the nice GUI that comes with Docker Desktop so I can easily manage and install containers?
3 Answers
To be honest, once you get the hang of the CLI, you realize GUIs can be slower and clunkier. You really get used to Docker's command line, and it feels way more natural.
Docker really thrives in the CLI environment. It might seem daunting at first, but running containers through the terminal is much more efficient than using a GUI. Just take some time with the documentation, and you'll see how powerful it is!
You won't find a GUI with the standalone Docker installation. Docker Desktop has the nice GUI features. I recommend learning to use the command line interface (CLI) first—it'll be super beneficial in the long run! If you're looking for something simpler, check out Portainer. Learning Docker Compose can also be a great first step for beginners; it helps you manage your containers easily with just a few commands.

Totally agree! Docker Compose is a solid starting point.