Control your docker containers from plasma applet.
Note
To use the plasmoid widget effectively, it is essential to run Docker without requiring sudo privileges.
- Start / Stop Docker from applet
- List all available containers
- Start, Stop, Restart and Delete containers
- Show containers info
- Inspect containers
- Container logs shortcut
- Exec container shortcut
- Remote Docker (To do)
sudo pacman -S curl kdeplasma-addons
- Right click on the desktop
- Click on "Enter Edit Mode"
- Click on "Add Widgets"
- Click on "Get New Widgets"
- Click on "Download New Plasma Widgets"
- Search for "Dockio"
- Click on "Install" and you're done!
Go to Configure System Tray > Entries > System Services then choose "Show when relevant" or "Always shown"
git clone https://github.com/imoize/plasmoid-dockio.git
cd plasmoid-dockio
kpackagetool6 -t Plasma/Applet -i package
Restart plasmashell
systemctl --user restart plasma-plasmashell
Go to Configure System Tray > Entries > System Services then choose "Show when relevant" or "Always shown"
To utilize the plasmoid widget for managing Docker containers, it's essential to run Docker without requiring sudo privileges. This ensures that the functionality works as expected. See here for detailed information.
Create the docker group.
sudo groupadd docker
Add your user to the docker group.
sudo usermod -aG docker $USER
Log out and log back in so that your group membership is re-evaluated.