linuxserver/diskover.

5,552,181 62 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/diskover
Build Time 18 Apr 2024 11:15:52
Category Productivity
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 2.2.2 18 Apr 2024 at 11:15:51

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  diskover:
    image: linuxserver/diskover:2.2.2
    container_name: diskover
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London
      - PUID=1000 # for UserID 
      - PGID=1000 # for GroupID
      - ES_USER=elastic # ElasticSearch username (optional)
      - ES_PORT=9200 # ElasticSearch port (optional)
      - ES_PASS=changeme # ElasticSearch password (optional)
      - ES_HOST=elasticsearch # ElasticSearch host (optional)
    volumes:
      - /host/path/to/data:/data # Default mount point to crawl
      - /host/path/to/config:/config # Persistent config files
    ports:
      - 443:443/tcp # diskover Web UI
      - 80:80/tcp # diskover Web UI

CLI

docker create \
  --name=diskover \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London` \
  -e PUID=1000 `# for UserID ` \
  -e PGID=1000 `# for GroupID` \
  -e ES_USER=elastic `# ElasticSearch username (optional)` \
  -e ES_PORT=9200 `# ElasticSearch port (optional)` \
  -e ES_PASS=changeme `# ElasticSearch password (optional)` \
  -e ES_HOST=elasticsearch `# ElasticSearch host (optional)` \
  -v /host/path/to/data:/data `# Default mount point to crawl` \
  -v /host/path/to/config:/config `# Persistent config files` \
  -p 443:443/tcp `# diskover Web UI` \
  -p 80:80/tcp `# diskover Web UI` \
  --restart unless-stopped \
  linuxserver/diskover:2.2.2