Is your feature request related to a problem? Please describe.
I have special files in all my bind-mount directories, including the conf.d/ directory where docker-volume-backup reads backup configuration files. Since these files are unrecognized, DVB won't start up.
Describe the solution you'd like
Ignore all dotfiles, which are traditionally considered hidden files, in conf.d:
|
for _, item := range items { |
Describe alternatives you've considered
Looks like the code skips directories, so I may create a special subdirectory to hide my dotfiles.
Is your feature request related to a problem? Please describe.
I have special files in all my bind-mount directories, including the
conf.d/directory where docker-volume-backup reads backup configuration files. Since these files are unrecognized, DVB won't start up.Describe the solution you'd like
Ignore all dotfiles, which are traditionally considered hidden files, in
conf.d:docker-volume-backup/cmd/backup/config_provider.go
Line 100 in 87bf4fb
Describe alternatives you've considered
Looks like the code skips directories, so I may create a special subdirectory to hide my dotfiles.