Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tedkulp/docker-sonarr-mp4-automator
- Owner: tedkulp
- License: mit
- Created: 2017-08-06T16:39:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-11-14T17:07:22.000Z (about 4 years ago)
- Last Synced: 2024-11-14T10:41:27.671Z (2 months ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.