Files
infrastructure/ansible/roles/recyclarr/templates/docker-compose.yml
2025-04-07 15:03:33 -04:00

19 lines
395 B
YAML

version: "{{ docker_compose_version }}"
networks:
starr:
external: true
services:
recyclarr:
container_name: recyclarr
image: ghcr.io/recyclarr/recyclarr:7
restart: unless-stopped
user: "{{ service_user.uid }}:{{ service_user.uid }}"
networks:
- starr
environment:
- "TZ={{ timezone }}"
volumes:
- "{{ data_dir }}/{{ role_name }}:/config"