mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-06-27 13:15:23 +00:00
doku
This commit is contained in:
parent
2f5ab956a4
commit
eab3a9b3c6
@ -121,6 +121,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
|
|
||||||
# Docker Managers
|
# Docker Managers
|
||||||
- [Diun](apps/docker/diun.md)
|
- [Diun](apps/docker/diun.md)
|
||||||
|
- [Doku](apps/docker/doku.md)
|
||||||
- [Portainer](apps/docker/portainer.md)
|
- [Portainer](apps/docker/portainer.md)
|
||||||
- [WatchTower](apps/docker/watch-tower.md)
|
- [WatchTower](apps/docker/watch-tower.md)
|
||||||
|
|
||||||
|
24
apps/docker/doku.md
Normal file
24
apps/docker/doku.md
Normal 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)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
## 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'
|
||||||
|
```
|
BIN
apps/docker/doku.png
Normal file
BIN
apps/docker/doku.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 283 KiB |
@ -1,5 +1,6 @@
|
|||||||
# qbittorrent
|
# qbittorrent
|
||||||
- ugly as hell
|
- ugly as hell
|
||||||
|
- less ugly with docker-mods theme
|
||||||
- probably the best (as of today)
|
- probably the best (as of today)
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
@ -14,7 +15,6 @@
|
|||||||
## docker-compose.yml
|
## docker-compose.yml
|
||||||
```yml
|
```yml
|
||||||
---
|
---
|
||||||
version: "2.1"
|
|
||||||
services:
|
services:
|
||||||
qbittorrent:
|
qbittorrent:
|
||||||
image: linuxserver/qbittorrent
|
image: linuxserver/qbittorrent
|
||||||
@ -26,6 +26,9 @@ services:
|
|||||||
- TZ=Europe/Dublin
|
- TZ=Europe/Dublin
|
||||||
- UMASK_SET=022
|
- UMASK_SET=022
|
||||||
- WEBUI_PORT=3030
|
- 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:
|
volumes:
|
||||||
- ./config:/config
|
- ./config:/config
|
||||||
- ./downloads:/downloads
|
- ./downloads:/downloads
|
||||||
|
Loading…
Reference in New Issue
Block a user