Skip to content

sisques-labs/loopback

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

490 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Loopback

A local operator dashboard for AWS services running on your machine — built for teams using LocalStack or Floci.

Loopback gives you a visual interface to browse, inspect, and interact with your local AWS resources without leaving the browser. No credentials, no AWS console, no context switching.

Services

Service What you can do
S3 Browse buckets, upload/download objects
SQS View queues, send and consume messages
SNS Manage topics and subscriptions
DynamoDB Browse tables, query and edit items
Lambda List functions, invoke with custom payloads
CloudWatch Logs Stream and filter log groups

Additional tools: SDK Request Inspector, Snapshots, Timeline, Terminal, Seed, Config.

Quick start

See Getting Started for full prerequisites and setup steps.

pnpm install
export AWS_ENDPOINT_URL=http://localhost:4566
pnpm dev

Open http://localhost:3000.

Docker

Pre-built multi-arch images (linux/amd64 + linux/arm64) are published on every release to Docker Hub and GitHub Container Registry. They are functionally identical — pull whichever mirror is closer to your runtime.

Pull

# Docker Hub
docker pull sisqueslabs/loopback:latest

# GitHub Container Registry (GHCR)
docker pull ghcr.io/sisques-labs/loopback:latest

Run

The container exposes the dashboard on port 3000. Map it to any host port you like and open http://localhost:3000:

docker run --rm -p 3000:3000 sisqueslabs/loopback:latest

Or, against the GHCR mirror:

docker run --rm -p 3000:3000 ghcr.io/sisques-labs/loopback:latest

Connect to LocalStack

Loopback is a thin operator dashboard for AWS services running on your machine — usually LocalStack. Point it at your LocalStack endpoint with two env vars (NEXT_PUBLIC_AWS_ENDPOINT_URL mirrors AWS_ENDPOINT_URL for browser-side error hints):

docker run --rm -p 3000:3000 \
  -e AWS_ENDPOINT_URL=http://host.docker.internal:4566 \
  -e NEXT_PUBLIC_AWS_ENDPOINT_URL=http://localhost:4566 \
  -e AWS_REGION=us-east-1 \
  -e AWS_ACCESS_KEY_ID=test \
  -e AWS_SECRET_ACCESS_KEY=test \
  sisqueslabs/loopback:latest

On Linux hosts where host.docker.internal is not resolved by default, add --add-host=host.docker.internal:host-gateway or use the LocalStack container's network alias.

Supported tags

Tag Meaning Promoted to :latest?
:latest Most recent stable release
:X.Y.Z Immutable stable release (e.g. :0.1.1, :1.2.0) Yes, on release
:alpha Rolling alpha channel — latest X.Y.Z-alpha.N No
:beta Rolling beta channel — latest X.Y.Z-beta.N No
:rc Rolling release-candidate channel No
:X.Y.Z-<channel>.N Immutable pre-release (e.g. :0.2.0-beta.1) No

Pre-release channel tags (:alpha, :beta, :rc) never overwrite :latest. Stable releases never overwrite the rolling pre-release tags.

Runtime environment variables

Variable Default Purpose
PORT 3000 Port the Next.js server listens on inside the container.
HOSTNAME 0.0.0.0 Bind address inside the container — leave as-is for -p mapping.
NEXT_TELEMETRY_DISABLED 1 Next.js anonymous telemetry is disabled in the image by default.
AWS_ENDPOINT_URL (unset) Server-side AWS endpoint. Set to your LocalStack URL.
NEXT_PUBLIC_AWS_ENDPOINT_URL (unset) Same URL, exposed to the browser for error-panel hints.
AWS_REGION us-east-1 Region used by the embedded AWS SDK clients.
AWS_ACCESS_KEY_ID test LocalStack accepts any value; override only for real AWS.
AWS_SECRET_ACCESS_KEY test Same as above.

Releasing a new image

Releases are cut from the Release workflow (Actions → ReleaseRun workflow). Pick a SemVer bump (patch | minor | major) and a channel (stable | alpha | beta | rc); the workflow bumps package.json, tags the commit, builds multi-arch, and publishes to both registries.

Documentation

About

AWS management dashboard that lets developers run, monitor, and control AWS-like services in a local environment with a modern and developer-friendly interface. Designed to simplify local cloud development, testing, and service orchestration.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages