Git Product home page Git Product logo

docker-usenet's Introduction

Usenet in Docker

Create a usenet downloader setup easily with the power of Docker. All built on Alpine.

Todo

  • Headphones
  • LazyLibrarian
  • Media storage/mounting
  • Torrents?

Usage

You probably want Docker Compose to boot these containers

Example docker-compose.yml

nzbget:
  image: benjick/nzbget
  ports:
    - "6789:6789"
  volumes:
    - ./config:/usr/local/etc
    - ./media:/volumes/media

sonarr:
  image: benjick/sonarr
  links:
    - nzbget
  ports:
    - "8989:8989"
  volumes:
    - ./config/sonarr:/volumes/config/sonarr

couchpotato:
  image: benjick/couchpotato
  links:
    - nzbget
  ports:
    - "5050:5050"
  volumes:
    - ./config/couchpotato:/root/.couchpotato

If you don't need couchpotato, just remove it's section from the compose-file. When you point for example sonarr to a downloader (nzbget) you put nzbget:6789 instead of localhost:6789 or whatever you usually do.

Then just run docker-compose up -d to start the containers. To shut them down just do docker-compose stop (or kill if you're in a hurry).

A folder named config will be created and will contain all databases etc for the applications. This is the folder you want to backup to keep your settings etc. It should be all you need to backup, settings-wise.

In this example we are creating a folder called media (./media:/volumes/media) which can be accessed inside the application with /volumes/media. If you want more mountpoints you can just do something like this:

  volumes:
    - ./media:/volumes/media/tv
    - /some/other/dir:/volumes/media/movies

and then use /volumes/media/tv and /volumes/media/movies instead of just /volumes/media.

Note: If you do this, don't save any files to /volumes/media because that will be inside the container, not on your drive, which means if you somehow destroy the container the data might get lost.

docker-usenet's People

Contributors

benjick avatar

Watchers

Dwight Spencer (denzuko@mastodon.social) avatar James Cloos avatar

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.