- Add docker-volume-manager command and .editorconfig

Introduces `docker-volume-manager` with functionalities to backup and restore Docker volumes. Also adds an .editorconfig file to ensure consistent coding styles across the project.
This commit is contained in:
Guillaume "B.B." Van Hemmen 2024-08-08 06:51:27 +02:00
parent a27fca4dea
commit fd7c4e87e7
Signed by: GuillaumeHemmen
GPG key ID: 7921E64524F7EB35
3 changed files with 171 additions and 3 deletions

11
.editorconfig Normal file
View file

@ -0,0 +1,11 @@
# top-most EditorConfig file
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
max_line_length = 80
indent_style = space
indent_size = 2
trim_trailing_whitespace = true