Containers, R2 - Mount R2 buckets in Containers
7mo ago
Source
CloudflareContainers, R2 - Mount R2 buckets in Containerscloudflare.comContainers now support mounting R2 buckets as FUSE (Filesystem in Userspace) volumes, allowing applications to interact with R2 using standard filesystem operations. Common use cases include: Bootstrapping containers with datasets, models, or dependencies for sandboxes and agent environments Persisting user configuration or application state without managing downloads Accessing large static files without bloating container images or downloading at startup FUSE adapters like tigrisfs , s3fs , and gcsfuse can be installed in your container image and configured to mount buckets at startup. FROM alpine:3.20 # Install FUSE and dependencies RUN apk update && \ apk add --no-cache ca-certificates fuse curl bash # Install tigrisfs RUN ARCH=$(uname -m) && \ if [ "$ARCH" = "x86_64" ]; then ARCH= "amd64" ; fi && \ if [ "$ARCH" = "aarch64" ]; then ARCH= "arm64" ; fi && \ VERSION=$(curl -s
You might also wanna read
Locker: Open-Source Self-Hosted File Storage Platform Alternative to Dropbox and Google Drive
Locker is an open-source, self-hostable file storage platform that serves as an alternative to Dropbox and Google Drive. It allows users to
Configuring Raspberry Pi 5 Kernel to Run gVisor Container Security Sandbox
The article details a technical challenge of running gVisor (Google's container security sandbox) on Raspberry Pi 5, identifying a specific
Building a NAS entirely from an Alpine Linux initramfs
The author describes their NAS setup called "frood" which runs entirely as a single initramfs containing a full Alpine Linux system. This "d
words.filippo.io·18d ago
Containerization is a Swift package for running Linux containers on macOS
github.com·1y ago
Self-Hosting 10TB S3 Storage on a Framework Laptop with JBOD Setup
The author shares their experience of self-hosting a 10TB S3-compatible storage system using a second-hand Framework laptop (missing its scr
jamesoclaire.com·9mo ago
Optimizing Container Image Distribution to Eliminate Cold Starts in AI Applications
The article discusses the persistent problem of container cold starts in latency-sensitive AI applications and proposes solutions for faster
cerebrium.ai·3mo ago
Comments
Sign in to join the conversation.
No comments yet. Be the first.