homelab/compose/media/automation/profilarr/compose.yaml
Eduardo Figueroa 3bf1575ca8 chore: General catchup - service updates and cleanup
Updated service configurations, added new services, removed deprecated
ones, and improved gitignore patterns for better repository hygiene.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-15 05:23:02 +00:00

41 lines
967 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
traefik.http.routers.profilarr.middlewares: authelia
# Homarr Discovery
homarr.name: Profilarr (Profiles)
homarr.group: Automation
homarr.icon: mdi:cog-sync
networks:
homelab:
external: true