Skip to content
This repository was archived by the owner on Jan 10, 2026. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 1.13 KB

File metadata and controls

33 lines (22 loc) · 1.13 KB

Media-Provider

Validate - Tests Validate - Linter

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