Skip to content
Tech News
← Back to articles

Floci – A free, open-source local AWS emulator

read original more articles
Why This Matters

Floci offers a free, open-source local AWS emulator that simplifies development and testing by removing the need for cloud accounts and extensive setup. Its lightweight design and comprehensive service support make it a valuable tool for developers seeking a fast, cost-effective alternative to traditional cloud environments. This advancement benefits both the tech industry and consumers by enabling more accessible, efficient, and secure local testing of AWS services.

Key Takeaways

🍿☁️ Light, fluffy, and always free

Named after floccus β€” the cloud formation that looks exactly like popcorn.

A free, open-source local AWS emulator. No account. No feature gates. No CI restrictions. Just docker compose up .

LocalStack's community edition sunset in March 2026 β€” requiring auth tokens, dropping CI support, and freezing security updates. Floci is the no-strings-attached alternative.

Why Floci?

Floci LocalStack Community Auth token required No Yes (since March 2026) CI/CD support Unlimited Requires paid plan Security updates Yes Frozen Startup time ~24 ms ~3.3 s Idle memory ~13 MiB ~143 MiB Docker image size ~90 MB ~1.0 GB License MIT Restricted API Gateway v2 / HTTP API βœ… ❌ Cognito βœ… ❌ ElastiCache (Redis + IAM auth) βœ… ❌ RDS (PostgreSQL + MySQL + IAM auth) βœ… ❌ S3 Object Lock (COMPLIANCE / GOVERNANCE) βœ… ⚠️ Partial DynamoDB Streams βœ… ⚠️ Partial IAM (users, roles, policies, groups) βœ… ⚠️ Partial STS (all 7 operations) βœ… ⚠️ Partial Kinesis (streams, shards, fan-out) βœ… ⚠️ Partial KMS (sign, verify, re-encrypt) βœ… ⚠️ Partial Native binary βœ… ~40 MB ❌

20+ services. 408/408 SDK tests passing. Free forever.

Quick Start

# docker-compose.yml services : floci : image : hectorvent/floci:latest ports : - " 4566:4566 " volumes : - ./data:/app/data

docker compose up

... continue reading