Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tedkulp/docker-sonarr-mp4-automator

A docker container based on linuxserver/sonarr with mp4 automation baked in
https://github.com/tedkulp/docker-sonarr-mp4-automator

Last synced: 2 days ago
JSON representation

A docker container based on linuxserver/sonarr with mp4 automation baked in

Awesome Lists containing this project

README

        

# tedkulp/sonarr
A docker container based on linuxserver/sonarr with mp4 automation baked in

## Usage
````
docker create \
--name sonarr \
--restart unless-stopped \
-p 8989:8989 \
-e PUID=1001 -e PGID=1001 \
-e TZ="America/Chicago" \
-v :/config \
-v /mp4_automator:/config_mp4_automator \
-v :/movies \
-v :/downloads \
tedkulp/sonarr

mkdir /mp4_automator && \
wget https://raw.githubusercontent.com/mdhiggins/sickbeard_mp4_automator/master/autoProcess.ini.sample -O /mp4_automator/autoProcess.ini
````

## Parameters
See [https://hub.docker.com/r/linuxserver/sonarr/](https://hub.docker.com/r/linuxserver/sonarr/) for details.

## mkdir
Makes a symlink from sickbeard_mp4_automator to a config directory that is a volume for the container. If the host has a config file (autoProcess.ini) in the mounted volume, then sickbeard_mp4_automator will be able to use that. This is useful if you are running multiple containers but want to share the mp4 automation configuration between them. It also has the benefit of being able to modify the config from the host OS.