aboutsummaryrefslogtreecommitdiff
path: root/doc/book/src/connect/fs.md
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2021-11-10 18:05:07 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2021-11-10 18:05:07 +0100
commit76d21be1b9d7fc05ca59c351f1b871f909a49dd7 (patch)
tree885d853a4c0b74d313641c29738dd3238d9f482b /doc/book/src/connect/fs.md
parent1928f59d5415481c51214e5ce29c2208678650d5 (diff)
downloadgarage-76d21be1b9d7fc05ca59c351f1b871f909a49dd7.tar.gz
garage-76d21be1b9d7fc05ca59c351f1b871f909a49dd7.zip
Add skeleton for backups, fuse and code sections
Diffstat (limited to 'doc/book/src/connect/fs.md')
-rw-r--r--doc/book/src/connect/fs.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/book/src/connect/fs.md b/doc/book/src/connect/fs.md
new file mode 100644
index 00000000..db486233
--- /dev/null
+++ b/doc/book/src/connect/fs.md
@@ -0,0 +1,30 @@
+# FUSE (s3fs, goofys, s3backer...)
+
+**WARNING! Garage is not POSIX compatible.
+Mounting S3 buckets as filesystems will not provide POSIX compatibility.
+If you are not careful, you will lose or corrupt your data.**
+
+Do not use these FUSE filesystems to store any database files (eg. MySQL, Postgresql, Mongo or sqlite),
+any daemon cache (dovecot, openldap, gitea, etc.),
+and more generally any software that use locking, advanced filesystems features or make any synchronisation assumption.
+Ideally, avoid these solutions at all for any serious or production use.
+
+## rclone mount
+
+*External link:* [rclone documentation > rclone mount](https://rclone.org/commands/rclone_mount/)
+
+## s3fs
+
+*External link:* [s3fs github > README.md](https://github.com/s3fs-fuse/s3fs-fuse#examples)
+
+## goofys
+
+*External link:* [goofys github > README.md](https://github.com/kahing/goofys#usage)
+
+## s3backer
+
+*External link:* [s3backer github > manpage](https://github.com/archiecobbs/s3backer/wiki/ManPage)
+
+## csi-s3
+
+*External link:* [csi-s3 Github > README.md](https://github.com/ctrox/csi-s3)