Giter Club home page Giter Club logo

http-drogue's Introduction

Http Drogue

Releases Docker Image Size MIT license

Http Drogue is a tiny service that downloads files over HTTP from links you provide. It can restart and resume interrupted downloads.

A web page. An input at the top is labelled download URL, with a start download button next to it. A table is located below, with a file being downloaded. The table displays the download speed, remaining time, completed percentage, downloaded size and total size. A refresh list button is above the table.

Http Drogue is a lightweight service which is meant to run locally, like a laptop or a home server located where you are. It's best co-located with a service like Samba SMB server, NextCloud, or Bulgur Cloud so you can access downloaded files.

Installation

Use with Docker is the recommended usage method.

You'll need 3 things to run the container:

  • A folder to store your downloads. This must be mounted at /downloads in the container.
  • A folder to store partial download data. This must be mounted at /data in the container.
  • The environment variable HTTP_DROGUE_PASSWORD. You'll use any username with this password to log in.

For example:

docker run \
  -v $HOME/Downloads:/downloads \
  -v $HOME/.local/share/http-drogue:/data \
  -e HTTP_DROGUE_PASSWORD=correct-horse-battery-staple \
  -p 8080:8080 \
  seriousbug/http-drogue

This will store the downloads in ~/Downloads, and the app data in ~/.local/share, and use correct-horse-battery-staple as the login password. Again, enter any username to log in. The page will be at http://localhost:8080.

Here is a compose file example as well:

version: '3'

services:
  http-drogue:
    image: seriousbug/http-drogue
    restart: always
    volumes:
      - /path/to/host/downloads:/downloads
      - http-drogue-data:/data
    environment:
      - HTTP_DROGUE_PASSWORD=correct-horse-battery-staple

volumes:
  - http-drogue-data

Usage

Go to http://localhost:8080. Enter any username, and the password you picked in the environment variable. You should see the Http Drogue page.

Paste a URL into the box and hit the button to start download. The file list below will not update automatically, hit the "Refresh List" button or refresh the page to update it.

If a download is interrupted, Http Drogue will automatically retry the download. It can resume the download if the source you are downloading from supports that as well.

If a download is interrupted over 24 times, Http Drogue will fail the download. Make sure the URL is correct (you can see the URL by hovering over a file name), then click the restart button to restart that download.

http-drogue's People

Contributors

seriousbug avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

sagar19raorane

http-drogue's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.