You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
979 B
Bash

# [Diskover](https://github.com/diskoverdata/diskover-community) is an open
# source file system indexer that uses Elasticsearch to index and manage data
# across heterogeneous storage systems.
. ./.env
docker run -d \
--name=diskover \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-e ES_HOST=elasticsearch `# ElasticSearch host (optional)` \
-e ES_PORT=9200 `# ElasticSearch port (optional)` \
-e ES_USER=elastic `# ElasticSearch username (optional)` \
-e ES_PASS=changeme `# ElasticSearch password (optional)` \
-p 80:80 `# diskover Web UI` \
-v ${BASEDIR:-/volume1/docker}/diskover/config:/config `# Persistent config files` \
-v ${BASEDIR:-/volume1/docker}/diskover/data:/data `# Default mount point to crawl` \
--restart unless-stopped \
ghcr.io/linuxserver/diskover