2025-01-04 17:07:13 +13:00
|
|
|
# Qocker-miqt
|
2024-09-23 08:45:04 +03:00
|
|
|
|
2025-01-06 19:24:16 +13:00
|
|
|
Qocker-miqt is a user-friendly GUI application for managing Docker containers.
|
|
|
|
|
|
|
|
This is a fork of [Qocker](https://github.com/xlmnxp/Qocker) ported to the [MIQT](https://github.com/mappu/miqt) library for demonstration purposes.
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
```bash
|
|
|
|
apt install qt6-base-dev build-essential golang-go
|
|
|
|
go build -ldflags '-s -w'
|
|
|
|
./qocker-miqt
|
|
|
|
```
|
|
|
|
|
|
|
|
If your `docker` binary requires `sudo`, then
|
|
|
|
1. Run `sudo docker` once to prime the sudo login cache; then
|
|
|
|
2. Run `./qocker-miqt --sudo`. Then qocker will use sudo for all docker invocations.
|