Skip to content

Releases: simedw/fetchfs

Release list

v0.1.1

Choose a tag to compare

@simedw simedw released this 03 Feb 14:15
3bdbda5

Ensure that each image is build with the right environment

v0.1.0

Choose a tag to compare

@simedw simedw released this 11 Jan 23:40

First version 🎉

fetchfs is a FUSE‑based virtual filesystem that downloads URLs just‑in‑time and caches them locally.
Think presigned S3 URLs or large datasets with thousands of images.

  cat > example.json <<'EOF'
  {
    "version": 1,
    "entries": [
      {
        "path": "/data/reports/2024/q4.pdf",
        "url": "https://example.com/sample.pdf"
      }
    ]
  }
  EOF

  fetchfs mount --manifest example.json --mountpoint /mnt &

  ls /mnt/data/reports/2024
  # q4.pdf

If you run into any trouble, please open an issue.