在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):linuxserver/docker-sonarr开源软件地址(OpenSource Url):https://github.com/linuxserver/docker-sonarr开源编程语言(OpenSource Language):Dockerfile 100.0%开源软件介绍(OpenSource Introduction):The LinuxServer.io team brings you another container release featuring:
Find us at:
linuxserver/sonarrSonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. Supported ArchitecturesWe utilise the docker manifest for multi-platform awareness. More information is available from docker here and our announcement here. Simply pulling The architectures supported by this image are:
Version TagsThis image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
Application SetupAccess the webui at Media foldersWe have set Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. The folks over at servarr.com wrote a good write-up on how to get started with this. UsageHere are some example snippets to help you get started creating a container. click here for more info)docker-compose (recommended,---
version: "2.1"
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- /path/to/data:/config
- /path/to/tvseries:/tv #optional
- /path/to/downloadclient-downloads:/downloads #optional
ports:
- 8989:8989
restart: unless-stopped click here for more info)docker cli (docker run -d \
--name=sonarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-p 8989:8989 \
-v /path/to/data:/config \
-v /path/to/tvseries:/tv `#optional` \
-v /path/to/downloadclient-downloads:/downloads `#optional` \
--restart unless-stopped \
lscr.io/linuxserver/sonarr:latest ParametersContainer images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate
Environment variables from files (Docker secrets)You can set any environment variable from a file by using a special prepend As an example: -e FILE__PASSWORD=/run/secrets/mysecretpassword Will set the environment variable Umask for running applicationsFor all of our images we provide the ability to override the default umask settings for services started within the containers using the optional User / Group IdentifiersWhen using volumes ( Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. In this instance $ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) Docker ModsWe publish various Docker Mods to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. Support Info
Updating InfoMost of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the Application Setup section above to see if it is recommended for the image. Below are the instructions for updating containers: Via Docker Compose
Via Docker Run
Via Watchtower auto-updater (only use if you don't remember the original parameters)
Note: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using Docker Compose. Image Update Notifications - Diun (Docker Image Update Notifier)
Building locallyIf you want to make local modifications to these images for development purposes or just to customize the logic: git clone https://github.com/linuxserver/docker-sonarr.git
cd docker-sonarr
docker build \
--no-cache \
--pull \
-t lscr.io/linuxserver/sonarr:latest . The ARM variants can be built on x86_64 hardware using docker run --rm --privileged multiarch/qemu-user-static:register --reset Once registered you can define the dockerfile to use with Versions
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论