diff --git a/README.md b/README.md
index 304b1ca..8e34b93 100644
--- a/README.md
+++ b/README.md
@@ -121,6 +121,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
# Docker Managers
- [Diun](apps/docker/diun.md)
+- [Doku](apps/docker/doku.md)
- [Portainer](apps/docker/portainer.md)
- [WatchTower](apps/docker/watch-tower.md)
diff --git a/apps/docker/doku.md b/apps/docker/doku.md
new file mode 100644
index 0000000..fd94cd4
--- /dev/null
+++ b/apps/docker/doku.md
@@ -0,0 +1,24 @@
+# Doku
+Doku is a web-based Docker disk usage monitor.
+
+
+
+- [Homepage](https://docker-disk.space)
+- [Github repo](https://github.com/amerkurev/doku)
+
+![Screenshot](doku.png)
+
+
+## docker-compose.yml
+```yml
+---
+services:
+ doku:
+ image: amerkurev/doku
+ container_name: doku
+ ports:
+ - 9090:9090
+ volumes:
+ - '/var/run/docker.sock:/var/run/docker.sock:ro'
+ - '/:/hostroot:ro'
+```
diff --git a/apps/docker/doku.png b/apps/docker/doku.png
new file mode 100644
index 0000000..a498b4e
Binary files /dev/null and b/apps/docker/doku.png differ
diff --git a/apps/downloads/qbit.md b/apps/downloads/qbit.md
index 94901f4..12abbed 100644
--- a/apps/downloads/qbit.md
+++ b/apps/downloads/qbit.md
@@ -1,5 +1,6 @@
# qbittorrent
- ugly as hell
+- less ugly with docker-mods theme
- probably the best (as of today)
@@ -14,7 +15,6 @@
## docker-compose.yml
```yml
---
-version: "2.1"
services:
qbittorrent:
image: linuxserver/qbittorrent
@@ -26,6 +26,9 @@ services:
- TZ=Europe/Dublin
- UMASK_SET=022
- WEBUI_PORT=3030
+ # apply a nice UI theme https://docs.theme-park.dev/setup/#docker-mods
+ - DOCKER_MODS=ghcr.io/gilbn/theme.park:qbittorrent
+ - TP_THEME=space-gray
volumes:
- ./config:/config
- ./downloads:/downloads