Skip to content

Commit

Permalink
Notifiarr: Starr app Database Checks Requirement (#329)
Browse files Browse the repository at this point in the history
* Starr app Database Checks Requirement

The database corruption check requires a folder to move and then examine a backup file which is /tmp by default it doesn't have access to that obviously so this will allow it to use its appdata folder for this purpose

I'm not sure if I did it entirely right I probably did not

* Mount instead of Volume

* Fix missing spaces

* Fix up the missing block
  • Loading branch information
Nypheena authored Feb 10, 2024
1 parent 16bd3f0 commit 011b041
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions roles/notifiarr/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ notifiarr_docker_volumes_custom: []
notifiarr_docker_volumes: "{{ notifiarr_docker_volumes_default
+ notifiarr_docker_volumes_custom }}"

# Mounts
notifiarr_docker_mounts_default:
- target: /tmp
type: tmpfs
notifiarr_docker_mounts_custom: []
notifiarr_docker_mounts: "{{ notifiarr_docker_mounts_default
+ notifiarr_docker_mounts_custom }}"

# Devices
notifiarr_docker_devices_default: []
notifiarr_docker_devices_custom: []
Expand Down

0 comments on commit 011b041

Please sign in to comment.