Files
jellarr/docker-compose.yml
Venkatesan Ravi d5d2f544e0 add Docker support with distroless Nix image
- Add docker package to flake.nix using buildLayeredImage
- Creates 73MB distroless image with Node.js + jellarr bundle
- Add docker-compose.yml example following configarr pattern
- Image uses config/config.yml as default path
- Tested successfully with podman

Users can build locally with: nix build .#docker && docker load < result
Or use published image: ghcr.io/venkyr77/jellarr:latest (coming soon)
2025-11-10 04:43:57 -08:00

11 lines
227 B
YAML

services:
jellarr:
image: ghcr.io/venkyr77/jellarr:latest
container_name: jellarr
environment:
- JELLARR_API_KEY=${JELLARR_API_KEY}
- TZ=Etc/UTC
volumes:
- ./config:/config
restart: "no"