Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 3.13 KB

DOCKERHUB.md

File metadata and controls

60 lines (42 loc) · 3.13 KB

Docker container for dupeGuru

Release Docker Image Size Docker Pulls Docker Stars Build Status Source Donate

This is a Docker container for dupeGuru.

The GUI of the application is accessed through a modern web browser (no installation or configuration needed on the client side) or via any VNC client.


dupeGuru logodupeGuru

dupeGuru is a tool to find duplicate files on your computer. It can scan either filenames or contents. The filename scan features a fuzzy matching algorithm that can find duplicate filenames even when they are not exactly the same.


Quick Start

NOTE: The Docker command provided in this quick start is given as an example and parameters should be adjusted to your need.

Launch the dupeGuru docker container with the following command:

docker run -d \
    --name=dupeguru \
    -p 5800:5800 \
    -v /docker/appdata/dupeguru:/config:rw \
    -v /home/user:/storage:rw \
    jlesage/dupeguru

Where:

  • /docker/appdata/dupeguru: This is where the application stores its configuration, states, log and any files needing persistency.
  • /home/user: This location contains files from your host that need to be accessible to the application.

Browse to http://your-host-ip:5800 to access the dupeGuru GUI. Files from the host appear under the /storage folder in the container.

Documentation

Full documentation is available at https://github.com/jlesage/docker-dupeguru.

Support or Contact

Having troubles with the container or have questions? Please create a new issue.

For other great Dockerized applications, see https://jlesage.github.io/docker-apps.