Git Product home page Git Product logo

docker-watcher3's Introduction

docker-watcher3

Docker Image Size (latest by date) Docker Pulls DockerHub ghcr.io

A docker image for watcher3 watcher's logo

Supported tags

Tags Size Platforms Build
latest, master amd64 GitHub Workflow Status (branch)ย 
dev amd64 GitHub Workflow Status (branch)

What is Watcher3 ?

From watcher3 repo:

Watcher is an automated movie NZB & Torrent searcher and snatcher. You can add a list of wanted movies and Watcher will automatically send the NZB or Torrent to your download client. Watcher also has basic post-processing capabilities such as renaming and moving.

How to use these images

All the lines commented in the examples below should be adapted to your environment.

Note: --user $(id -u):$(id -g) should work out of the box on linux systems. If your docker host run on windows or if you want specify an other user id and group id just replace with the appropriates values.

With Docker

docker run \
    --detach \
    --interactive \
    --name watcher3 \
    --user $(id -u):$(id -g) \
    #--publish 9090:9090 \
    --env UMASK_SET=022 \
    --env TZ=Europe/Paris \
    --volume /etc/localtime:/etc/localtime:ro \
    #--volume ./config:/config \
    #--volume ./app:/app \
    #--volume ./torrents:/torrents \
    #--volume ./usenet:/usenet \
    #--volume ./Media:/Media \
    ghcr.io/jee-r/watcher3:latest

With Docker Compose

docker-compose can help with defining the docker run config in a repeatable way rather than ensuring you always pass the same CLI arguments.

Here's an example docker-compose.yml config:

version: '3'

services:
  watcher3:
    image: ghcr.io/jee-r/watcher3:latest
    container_name: watcher3
    restart: unless-stopped
    user: $(id -u):$(id -g)
    #ports:
    #  - 9090:9090
    #environment:
      #- UMASK_SET=022
      #- TZ=Europe/Paris
    volumes:
      #- ./config:/config
      #- ./torrents:/torrents
      #- ./usenet:/usenet
      #- ./Media:/Media
      - /etc/localtime:/etc/localtime:ro

Volume mounts

Due to the ephemeral nature of Docker containers these images provide a number of optional volume mounts to persist data outside of the container:

  • /config: Contain watcher's config, db, posters and logs.
  • /app: Contain watcher3, usefull if you want roll a specific version (not required)
  • /torrents and /usenet: should contain watch directories, incomming .. etc for torrents and usenet.
  • /Media: Final directory where files are stored after post-process is done.
  • etc/localtime: This directory is for have the same time as host inthe container.

You should create directory before run the container otherwise directories are created by the docker deamon and owned by the root user

Environment variables

  • TZ: To change the timezone of the container set the TZ environment variable. The full list of available options can be found on Wikipedia.
  • UMASK: set permission of files created by the container process. More info on ArchLinux Wiki ArchLinux Wiki.

Ports

  • 9090: Watcher3 default port can be changed in /config/watcher.conf file.

License

This project is under the GNU Generic Public License v3 to allow free use while ensuring it stays open.

docker-watcher3's People

Contributors

jee-r avatar

Stargazers

 avatar  avatar

Watchers

 avatar  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.