This commit is contained in:
Dziad Borowy
2022-09-22 10:18:01 +01:00
parent 2f5ab956a4
commit eab3a9b3c6
4 changed files with 29 additions and 1 deletions

24
apps/docker/doku.md Normal file
View File

@@ -0,0 +1,24 @@
# Doku
Doku is a web-based Docker disk usage monitor.
<br>
- [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'
```