File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11strategy : local_filesystem
22settings :
3- root_path : .. /storage # The root path where the files will be stored - mount a proper folder in the docker file to match it
3+ root_path : ./storage # The root path where the files will be stored - mount a proper folder in the docker file to match it
44 subfolder_names_format : " " # eg: by_months/{Y}-{mm}/
55 create_subfolders : true
Original file line number Diff line number Diff line change 2222
2323def storage_profile_exists (profile_name : str ) -> bool :
2424 profile_path = os .path .abspath (
25- os .path .join (os .getenv ('STORAGE_PROFILE_PATH' , '/storage_profiles' ), f'{ profile_name } .yaml' ))
25+ os .path .join (os .getenv ('STORAGE_PROFILE_PATH' , '. /storage_profiles' ), f'{ profile_name } .yaml' ))
2626 if not os .path .isfile (profile_path ) and profile_path .startswith ('..' ):
2727 # backward compability for ../storage_manager in .env
2828 sub_profile_path = os .path .normpath (os .path .join ('.' , profile_path ))
You can’t perform that action at this time.
0 commit comments