A docker image for watcher3
Tags | Size | Platforms | Build |
---|---|---|---|
latest , master |
amd64 |
Β | |
dev |
amd64 |
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.
- Source Code : https://github.com/barbequesauce/Watcher3
- Original repo : https://github.com/nosmokingbandit/Watcher3
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.
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
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
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
TZ
: To change the timezone of the container set theTZ
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.
9090
: Watcher3 default port can be changed in/config/watcher.conf
file.
This project is under the GNU Generic Public License v3 to allow free use while ensuring it stays open.