https://github.com/guillaumedsde/radarr-distroless
Distroless container for the Radarr software
https://github.com/guillaumedsde/radarr-distroless
Last synced: 8 months ago
JSON representation
Distroless container for the Radarr software
- Host: GitHub
- URL: https://github.com/guillaumedsde/radarr-distroless
- Owner: guillaumedsde
- License: gpl-3.0
- Created: 2023-03-26T17:29:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T18:56:12.000Z (over 1 year ago)
- Last Synced: 2024-07-09T23:32:07.311Z (over 1 year ago)
- Language: Dockerfile
- Size: 41 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [🐋 Radarr-distroless](https://github.com/guillaumedsde/radarr-distroless)
[](https://hub.docker.com/r/guillaumedsde/radarr-distroless/tags)
[](https://hub.docker.com/r/guillaumedsde/radarr-distroless)
[](https://hub.docker.com/r/guillaumedsde/radarr-distroless)
[](https://github.com/guillaumedsde/radarr-distroless)
[](https://github.com/guillaumedsde/radarr-distroless)
[](https://hub.docker.com/r/guillaumedsde/radarr-distroless)
[](https://github.com/guillaumedsde/radarr-distroless/blob/master/LICENSE.md)This repository contains the code to build a small and secure distroless **docker** image for **[Radarr](https://github.com/Radarr/Radarr)** running as an unprivileged user.
The final images are built and hosted on the [dockerhub](https://hub.docker.com/r/guillaumedsde/radarr-distroless).## ✔️ Features summary
- 🥑 distroless minimal image
- 🤏 As few Docker layers as possible
- 🛡️ only basic runtime dependencies
- 🛡️ Runs as unprivileged user with minimal permissions## 🏁 How to Run
### `docker run`
```bash
$ docker run --volume "/your/config/path:/config" \
--publish "7878:7878" \
--user "1000:1000" \
--read-only=true \
guillaumedsde/radarr-distroless:latest
```### `docker-compose.yml`
```yaml
version: '3.9'
services:
radarr-distroless:
volumes:
- '/your/config/path:/config'
ports:
- '7878:7878'
user: '1000:1000'
read_only: true
image: 'guillaumedsde/radarr-distroless:latest'
```## 🖥️ Supported platforms
Currently this container supports only one (but widely used) platform:
- linux/amd64
- linux/arm64## 🙏 Credits
A couple of projects really helped me out while developing this container:
- 💽 [Radarr](https://github.com/Radarr/Radarr) _the_ awesome software
- 🐋 The [Docker](https://github.com/docker) project (of course)