diff --git a/arr/docker-compose.yml b/arr/docker-compose.yml index 4525540..3716390 100644 --- a/arr/docker-compose.yml +++ b/arr/docker-compose.yml @@ -1,4 +1,21 @@ services: + freshrss: + image: lscr.io/linuxserver/freshrss:latest + container_name: freshrss + environment: + - PUID=${UID} + - PGID=${GID} + - TZ=${TZ} + - VIRTUAL_HOST=rss.${DOMAIN} + - LETSENCRYPT_HOST=rss.${DOMAIN} + - LETSENCRYPT_EMAIL=${EMAIL} + volumes: + - ${CONFIG_LOCATION}/freshrss:/config + expose: + - "8085" + ports: + - 8085:80 + restart: unless-stopped radarr: image: lscr.io/linuxserver/radarr:latest container_name: radarr diff --git a/dashboard/data/homarr/db.sqlite b/dashboard/data/homarr/db.sqlite new file mode 100644 index 0000000..2986adb Binary files /dev/null and b/dashboard/data/homarr/db.sqlite differ diff --git a/nginx-proxy/client_max_body_size.conf b/nginx-proxy/client_max_body_size.conf index afbcd21..964fcea 100644 --- a/nginx-proxy/client_max_body_size.conf +++ b/nginx-proxy/client_max_body_size.conf @@ -1 +1 @@ -client_max_body_size 10000m; \ No newline at end of file +client_max_body_size 100000m; \ No newline at end of file