docker-bits/lsio/qdirstat/docker-compose.yaml

29 lines
946 B
YAML
Raw Normal View History

2022-01-13 00:39:35 +00:00
# [QDirStat](https://github.com/shundhammer/qdirstat) Qt-based directory
# statistics: KDirStat without any KDE -- from the author of the original
# KDirStat.
---
version: "2.1"
services:
qdirstat:
image: ghcr.io/linuxserver/qdirstat
container_name: qdirstat
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2022-01-13 00:39:35 +00:00
- PGID=${PGID:-100}
2023-02-12 01:01:09 +00:00
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
2022-01-13 00:39:35 +00:00
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Users home directory in the container, stores qdirstat settings and scans.
- ${BASEDIR:-/volume1/docker}/qdirstat/config:/config
# Data you want to analyze disk usage information of.
- ${BASEDIR:-/volume1/docker}/qdirstat/data:/data
ports:
# QdirStat desktop gui.
- 3000:3000
2023-04-08 00:50:33 +00:00
# QdirStat desktop gui HTTPS.
- 3001:3001
2022-01-13 00:39:35 +00:00
restart: unless-stopped