- 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)
11 lines
227 B
YAML
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"
|