You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RandomNinjaAtk
e5a76e4397
|
2 years ago | |
---|---|---|
.github | 2 years ago | |
hooks | 2 years ago | |
root | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
amd64.dockerfile | 2 years ago | |
arm32v7.dockerfile | 2 years ago | |
arm64v8.dockerfile | 2 years ago | |
multi-arch-manifest.yaml | 2 years ago |
README.md
RandomNinjaAtk/readarr-extended
Readarr + Extended Scripts
- Readarr Develop (develop branch), base image provided by LinuxServer.io Team
Supported Architectures
The architectures supported by this image are:
Architecture | Available | Tag |
---|---|---|
multi | ✅ | latest |
x86-64 | ✅ | amd64 |
arm64v8 | ✅ | arm64v8 |
arm32v7 | ✅ | arm32v7 |
Version Tags
Tag | Description |
---|---|
latest | Readarr (develop) + Extended Scripts |
Application Setup
Access the webui at <your-ip>:8787
, for more information check out Readarr.
Parameters
Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.
Parameter | Function |
---|---|
-p 8787 |
The port for the Readarr webinterface |
-v /config |
Configuration files for Readarr. (required path) |
Usage
Here are some example snippets to help you get started creating a container.
docker
docker create \
--name=readarr-extended \
-v /path/to/config/files:/config \
-p 8787:8787 \
-e TZ=America/New_York \
-e PUID=1000 \
-e PGID=1000 \
randomninjaatk/readarr-extended:latest
docker-compose
Compatible with docker-compose v2 schemas.
version: "2.1"
services:
readarr-extended:
image: randomninjaatk/readarr-extended:latest
container_name: readarr-extended
volumes:
- /path/to/config/files:/config
environment:
- TZ=America/New_York
- PUID=1000
- PGID=1000
ports:
- 8787:8787
restart: unless-stopped