Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 811 Bytes

Readme.MD

File metadata and controls

31 lines (21 loc) · 811 Bytes

Media-Provider

DOCS: https://fesaa.github.io/Media-Provider/

A web application for downloading content. Written in Go, and Angular. With a simple to navigate interface. Set up once, no need to touch files again.

Preview

Torrenting content with copy right is theft, bla bla, this is all educational, bla bla...

Docker compose

Is it recommended to use the docker image, no other way is officially supported. The image is available on Docker Hub. Here is a simple example;

media-provider:
  image: ameliaah/media-provider:latest
  restart: "on-failure:3"
  ports:
    - "8080:8080"
  volumes:
    - ./mp-data:/mp

Or with docker run,

docker run -v ./mp-data:/mp -p 8080:8080 ameliaah/media-provider:latest