move datastore to ram to handle weird edgecases of deleteing docker.img within a different tab

This commit is contained in:
Squidly271 2017-09-22 08:51:18 -04:00
parent 13427781dc
commit b369ee96c7
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -13,9 +13,9 @@
$plugin = "community.applications";
$communityPaths['persistentDataStore'] = "/var/lib/docker/unraid/community.applications.datastore"; /* anything in this folder is NOT deleted upon an update of templates */
$communityPaths['templates-community'] = "/var/lib/docker/unraid/templates-community-apps"; /* templates and temporary files stored here. Deleted every update of applications */
$communityPaths['tempFiles'] = "/tmp/community.applications/tempFiles"; /* path to temporary files */
$communityPaths['persistentDataStore'] = $communityPaths['tempFiles']."/community.applications.datastore"; /* anything in this folder is NOT deleted upon an update of templates */
$communityPaths['templates-community'] = $communityPaths['tempFiles']."/templates-community-apps"; /* templates and temporary files stored here. Deleted every update of applications */
$communityPaths['community-templates-url'] = "https://raw.githubusercontent.com/Squidly271/Community-Applications-Moderators/master/Repositories.json";
$communityPaths['Repositories'] = $communityPaths['tempFiles']."/Repositories.json";
$communityPaths['community-templates-info'] = $communityPaths['tempFiles']."/templates.json"; /* json file containing all of the templates */