https://github.com/ahuh/docker-arm-subzero
Docker image (ARMv7) hosting SubZero with MKVMerge (subtitle autodownloader for TV shows)
https://github.com/ahuh/docker-arm-subzero
arm docker dockerfile series subtitle-downloader subzero tvshows
Last synced: 3 months ago
JSON representation
Docker image (ARMv7) hosting SubZero with MKVMerge (subtitle autodownloader for TV shows)
- Host: GitHub
- URL: https://github.com/ahuh/docker-arm-subzero
- Owner: ahuh
- License: mit
- Created: 2017-05-26T11:14:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-18T17:56:02.000Z (over 5 years ago)
- Last Synced: 2025-01-21T10:51:07.510Z (5 months ago)
- Topics: arm, docker, dockerfile, series, subtitle-downloader, subzero, tvshows
- Language: Shell
- Homepage:
- Size: 2.96 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker ARM SubZero
Docker image dedicated to ARMv7 processors, hosting a SubZero daemon with embedded MKVMerge tools.
SubZero is a subtitle autodownloader for TV show / series video files.
See GitHub repository: https://github.com/ahuh/subzero
This image is part of a Docker images collection, intended to build a full-featured seedbox, and compatible with WD My Cloud EX2 Ultra NAS (Docker v1.7.0):Docker Image | GitHub repository | Docker Hub repository
------------ | ----------------- | -----------------
Docker image (ARMv7) hosting a Transmission torrent client with WebUI while connecting to OpenVPN | https://github.com/ahuh/docker-arm-transquidvpn | https://hub.docker.com/r/ahuh/arm-transquidvpn
Docker image (ARMv7) hosting a qBittorrent client with WebUI while connecting to OpenVPN | https://github.com/ahuh/docker-arm-qbittorrentvpn | https://hub.docker.com/r/ahuh/arm-qbittorrentvpn
Docker image (ARMv7) hosting SubZero with MKVMerge (subtitle autodownloader for TV shows) | https://github.com/ahuh/docker-arm-subzero | https://hub.docker.com/r/ahuh/arm-subzero
Docker image (ARMv7) hosting a SickChill server with WebUI | https://github.com/ahuh/docker-arm-sickchill | https://hub.docker.com/r/ahuh/arm-sickchill
Docker image (ARMv7) hosting a Medusa server with WebUI | https://github.com/ahuh/docker-arm-medusa | https://hub.docker.com/r/ahuh/arm-medusa
Docker image (ARMv7) hosting a Jackett server with WebUI | https://github.com/ahuh/docker-arm-jackett | https://hub.docker.com/r/ahuh/arm-jackett
Docker image (ARMv7) hosting a NGINX server to secure SickRage, Transmission and qBittorrent | https://github.com/ahuh/docker-arm-nginx | https://hub.docker.com/r/ahuh/arm-nginx## Installation
### Preparation
Before running container, you have to retrieve UID and GID for the user used to mount your tv shows directory:
* Get user UID:
```
$ id -u
```
* Get user GID:
```
$ id -g
```
The container will run impersonated as this user, in order to have read/write access to the tv shows directory.
You also need to create a directory to store the SubZero configuration.### Run container in background
```
$ docker run --name subzero --restart=always -d \
--add-host=dockerhost: \
--dns= --dns= \
-v :/config \
-v :/workingfolder \
-v /etc/localtime:/etc/localtime:ro \
-e "AUTO_UPDATE="
-e "PUID=" \
-e "PGID=" \
ahuh/arm-subzero
```
or
```
$ ./docker-run.sh subzero ahuh/arm-subzero
```
(set parameters in `docker-run.sh` before launch)### Configure SubZero
The container will use volumes directories to watch tv shows files, and to store configuration files.
You have to create these volume directories with the PUID/PGID user permissions, before launching the container:
```
/config
/workingfolder
```The container will automatically create a `SubZero.properties` file in the configuration dir (only if none was present before).
* The following parameters will be automatically modified at launch for compatibility with the Docker container:
```
subzero.basefolder.path=/workingfolder
subzero.workingfolder.path={basefolder}
subzero.mkvmerge.path=mkvmerge
log4j.appender.report.File=/config/logs/SubZero.html
log4j.appender.file.File=/config/logs/SubZero.log
```If you modified the `SubZero.properties` file, restart the container to reload SubZero configuration:
```
$ docker stop subzero
$ docker start subzero
```## HOW-TOs
### Get a new instance of bash in running container
Use this command instead of `docker attach` if you want to interact with the container while it's running:
```
$ docker exec -it subzero /bin/bash
```
or
```
$ ./docker-bash.sh subzero
```### Build image
```
$ docker build -t arm-subzero .
```
or
```
$ ./docker-build.sh arm-subzero
```