homelab/compose/media/automation/profilarr/compose.yaml
Eduardo Figueroa a1824a4043 refactor(media): Remove Tinyauth middleware from media automation services
Remove Tinyauth SSO middleware from all media automation services
(Lidarr, Profilarr, Prowlarr, qBittorrent, Radarr, SABnzbd, Sonarr)
and Jellyseerr. These services will migrate to Authelia for SSO.
2025-12-12 23:16:59 +00:00

40 lines
908 B
YAML

# Profilarr - Custom Format & Quality Profile Manager
# Docs: https://dictionarry.dev
services:
profilarr:
container_name: profilarr
image: santiagosayshey/profilarr:latest
restart: unless-stopped
env_file:
- .env
volumes:
- ./data:/app/data
- ./config:/config
networks:
- homelab
labels:
# Traefik
traefik.enable: true
traefik.docker.network: homelab
# Web UI
traefik.http.routers.profilarr.rule: Host(`profilarr.fig.systems`)
traefik.http.routers.profilarr.entrypoints: websecure
traefik.http.routers.profilarr.tls.certresolver: letsencrypt
traefik.http.services.profilarr.loadbalancer.server.port: 6868
# SSO Protection
# Homarr Discovery
homarr.name: Profilarr (Profiles)
homarr.group: Automation
homarr.icon: mdi:cog-sync
networks:
homelab:
external: true