A really dumb proof of concept that bundles the nightly branch builds of all of the *arr application
100K+
arr-in-one is a really dumb proof of concept that bundles the stable branch builds of all of the *arr applications into a single container, built daily. This image contains:
Each service uses its own subfolder under /config to store its data.
Our images support multiple architectures and simply pulling ghcr.io/thespad/arr-in-one:latest should retrieve the correct image for your arch.
The architectures supported by this image are:
| Architecture | Available | Tag |
|---|---|---|
| amd64 | ✅ | latest |
| arm64 | ✅ | latest |
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
| Tag | Available | Description |
|---|---|---|
| latest | ✅ | Nightly releases, built nightly |
| stable | ✅ | Stable releases, built weekly |
Here are some example snippets to help you get started creating a container.
---
services:
arr-in-one:
image: ghcr.io/thespad/arr-in-one
container_name: arr-in-one
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- SONARR= #optional
- RADARR= #optional
- LIDARR= #optional
- PROWLARR= #optional
- WHISPARR= #optional
volumes:
- /config:/config
ports:
- 8989:8989
- 7878:7878
- 8686:8686
- 9696:9696
- 6969:6969
restart: unless-stopped
docker run -d \
--name=arr-in-one \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e SONARR= `#optional` \
-e RADARR= `#optional` \
-e LIDARR= `#optional` \
-e PROWLARR= `#optional` \
-e WHISPARR= `#optional` \
-p 8989:8989 \
-p 7878:7878 \
-p 8686:8686 \
-p 9696:9696 \
-p 6969:6969 \
-v /config:/config \
--restart unless-stopped \
ghcr.io/thespad/arr-in-one
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 8989:8989 | Sonarr UI |
-p 7878:7878 | Radarr UI |
-p 8686:8686 | Lidarr UI |
-p 9696:9696 | Prowlarr UI |
-p 6969:6969 | Whisparr UI |
-e PUID=1000 | UID to run the applications as. |
-e PGID=1000 | GID to run the applications as. |
-e TZ=Europe/London | Specify a timezone to use e.g. Europe/London. |
-e SONARR= | Set to false to disable the Sonarr service. |
-e RADARR= | Set to false to disable the Radarr service. |
-e LIDARR= | Set to false to disable the Lidarr service. |
-e PROWLARR= | Set to false to disable the Prowlarr service. |
-e WHISPARR= | Set to false to disable the Whisparr service. |
-v /config:/config | Stores config and application files |
You can set any environment variable from a file by using a special prepend FILE__.
As an example:
-e FILE__PASSWORD=/run/secrets/mysecretpassword
Will set the environment variable PASSWORD based on the contents of the /run/secrets/mysecretpassword file.
For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional -e UMASK=022 setting.
Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up here before asking for support.
When using volumes (-v flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user PUID and group PGID.
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 PUID=1000 and PGID=1000, to find yours use id user as below:
$ id username
uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup)
docker exec -it arr-in-one /bin/bashdocker logs -f arr-in-oneMost of our images are static, versioned, and require an image update and container recreation to update the app inside. We do not recommend or support updating apps inside the container.
Below are the instructions for updating containers:
docker-compose pull
docker-compose pull arr-in-onedocker-compose up -d
docker-compose up -d arr-in-onedocker image prunedocker pull ghcr.io/thespad/arr-in-onedocker stop arr-in-onedocker rm arr-in-one/config folder and settings will be preserved)docker image prune[!TIP] We recommend Diun for update notifications. Other tools that automatically update containers unattended are not recommended or supported.
If you want to make local modifications to these images for development purposes or just to customize the logic:
git clone https://github.com/thespad/docker-arr-in-one.git
cd docker-arr-in-one
docker build \
--no-cache \
--pull \
-t ghcr.io/thespad/arr-in-one:latest .
The arm variants can be built on x86_64 hardware and vice versa using lscr.io/linuxserver/qemu-static
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
Content type
Image
Digest
sha256:eafc176a1…
Size
385.9 MB
Last updated
about 12 hours ago
docker pull thespad/arr-in-one