services: app: image: linuxserver/jackett:${JACKETT_VERSION:-latest} container_name: jackett-app environment: - PUID=${JACKETT_PUID:-1000} - PGID=${JACKETT_PGID:-1000} - TZ=${JACKETT_TZ:-America/Los_Angeles} - AUTO_UPDATE=${JACKETT_UPDATE:-false} volumes: - jackett-config:/config - jackett-downloads:/downloads ports: - ${JACKETT_PORT:-9117}:9117 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:9117/UI/Dashboard"] interval: 30s timeout: 10s retries: 3 start_period: 20s deploy: resources: limits: memory: 512m networks: - arr_network restart: unless-stopped volumes: jackett-config: name: jackett-config driver: local driver_opts: type: nfs o: "addr=${JACKETT_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4" device: "${JACKETT_CONFIG_NFS_DEVICE}" jackett-downloads: name: jackett-downloads driver: local driver_opts: type: nfs o: "addr=${JACKETT_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4" device: "${JACKETT_DOWNLOADS_NFS_DEVICE}" networks: arr_network: external: true