Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Portainer | 25,033 | 1 | 8 hours ago | 78 | April 21, 2021 | 1,091 | zlib | Go | ||
Making Docker and Kubernetes management easy. | ||||||||||
Awesome Docker | 24,728 | 6 days ago | apache-2.0 | |||||||
:whale: A curated list of Docker resources and projects | ||||||||||
Vulhub | 13,686 | 5 days ago | 34 | mit | Dockerfile | |||||
Pre-Built Vulnerable Environments Based on Docker-Compose | ||||||||||
Dockerfiles | 12,711 | 7 months ago | 75 | mit | Dockerfile | |||||
Various Dockerfiles I use on the desktop and on servers. | ||||||||||
Kaniko | 12,062 | 1 | a day ago | 29 | August 10, 2022 | 606 | apache-2.0 | Go | ||
Build Container Images In Kubernetes | ||||||||||
Hadolint | 8,319 | 1 | 17 days ago | 66 | July 09, 2022 | 139 | gpl-3.0 | Haskell | ||
Dockerfile linter, validate inline bash, written in Haskell | ||||||||||
Docker Node | 7,659 | 18 hours ago | 107 | mit | Dockerfile | |||||
Official Docker Image for Node.js :whale: :turtle: :rocket: | ||||||||||
Dillinger | 7,545 | 4 months ago | 109 | mit | HTML | |||||
The last Markdown editor, ever. | ||||||||||
V2ray For Doprax | 6,889 | a day ago | Dockerfile | |||||||
The tool can install v2ray on the Doprax, including VMess and VLess protocols, it will automatically switch IP, you need to fork this projects, read readme.md and run it. Create By ifeng. | ||||||||||
Buildkit | 6,564 | 59 | 217 | 3 hours ago | 274 | August 22, 2022 | 614 | apache-2.0 | Go | |
concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit |
The LinuxServer.io team brings you another container release featuring:
Find us at:
diskover is an open source file system indexer that uses Elasticsearch to index and manage data across heterogeneous storage systems.
We utilise the docker manifest for multi-platform awareness. More information is available from docker here and our announcement here.
Simply pulling lscr.io/linuxserver/diskover:latest
should retrieve the correct image for your arch, but you can also pull specific arch images via tags.
The architectures supported by this image are:
Architecture | Available | Tag |
---|---|---|
x86-64 | ✅ | amd64-<version tag> |
arm64 | ✅ | arm64v8-<version tag> |
armhf | ✅ | arm32v7-<version tag> |
This application is dependent on an ElasticSearch instance. Please see the example compose file for additional information.
The default username is diskover with the password of darkdata, access the container at http://<host-ip>/
. The UI may be unusable until a valid index has been created.
The default diskover-web Constants.php file located at /config/diskover-web.conf.d/Constants.php
will need to be edited to allow diskover-web to communicate with the ElasticSearch container. The following entries will need to be edited:
const ES_HOST = elasticsearch
const ES_PORT = 9200
The application doesn't start an index by default. A crontab is created inside of the /config
directory and can be set up to run automated indexes of /data
. Changes to this crontab file require a restart to apply. You can also manually run an index by executing /app/diskover/diskover.py
either in interactive or detached mode:
docker exec -u abc -d diskover python3 /app/diskover/diskover.py -i diskover-my_index_name /data
Will run an index in the backgrounddocker exec -u abc -it diskover python3 /app/diskover/diskover.py -i diskover-my_index_name /data
Will run an index in the foregroundHere are some example snippets to help you get started creating a container.
version: '2'
services:
diskover:
image: lscr.io/linuxserver/diskover
container_name: diskover
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- ES_HOST=elasticsearch
- ES_PORT=9200
volumes:
- /path/to/diskover/config:/config
- /path/to/diskover/data:/data
ports:
- 80:80
mem_limit: 4096m
restart: unless-stopped
depends_on:
- elasticsearch
elasticsearch:
container_name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:7.10.2
environment:
- discovery.type=single-node
- xpack.security.enabled=true
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- /path/to/esdata:/usr/share/elasticsearch/data
ports:
- 9200:9200
depends_on:
- elasticsearch-helper
restart: unless-stopped
elasticsearch-helper:
image: alpine
command: sh -c "sysctl -w vm.max_map_count=262144"
privileged: true
docker run -d \
--name=diskover \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e ES_HOST=elasticsearch \
-e ES_PORT=9200 \
-e ES_USER=elastic \
-e ES_PASS=changeme \
-p 80:80 \
-v /path/to/diskover/config:/config \
-v /path/to/diskover/data:/data \
--restart unless-stopped \
lscr.io/linuxserver/diskover:latest
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.
Parameter | Function |
---|---|
-p 80 |
diskover Web UI |
-e PUID=1000 |
for UserID - see below for explanation |
-e PGID=1000 |
for GroupID - see below for explanation |
-e TZ=Etc/UTC |
specify a timezone to use, see this 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) |
-v /config |
Persistent config files |
-v /data |
Default mount point to crawl |
You can set any environment variable from a file by using a special prepend FILE__
.
As an example:
-e FILE__PASSWORD=/run/secrets/mysecretpassword
Will set the environment variable PASSWORD
based on the contents of the /run/secrets/mysecretpassword
file.
For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional -e UMASK=022
setting.
Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up here before asking for support.
When using volumes (-v
flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID
and group PGID
.
Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic.
In this instance PUID=1000
and PGID=1000
, to find yours use id user
as below:
$ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
We publish various Docker Mods to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above.
docker exec -it diskover /bin/bash
docker logs -f diskover
docker inspect -f '{{ index .Config.Labels "build_version" }}' diskover
docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/diskover:latest
Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the Application Setup section above to see if it is recommended for the image.
Below are the instructions for updating containers:
docker-compose pull
docker-compose pull diskover
docker-compose up -d
docker-compose up -d diskover
docker image prune
docker pull lscr.io/linuxserver/diskover:latest
docker stop diskover
docker rm diskover
/config
folder and settings will be preserved)docker image prune
Pull the latest image at its tag and replace it with the same env variables in one run:
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower \
--run-once diskover
You can also remove the old dangling images: docker image prune
Note: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using Docker Compose.
If you want to make local modifications to these images for development purposes or just to customize the logic:
git clone https://github.com/linuxserver/docker-diskover.git
cd docker-diskover
docker build \
--no-cache \
--pull \
-t lscr.io/linuxserver/diskover:latest .
The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static
docker run --rm --privileged multiarch/qemu-user-static:register --reset
Once registered you can define the dockerfile to use with -f Dockerfile.aarch64
.