Skip to content

localstack/localstack:latest will require auth token from March 23 β€” docs & prerequisites update neededΒ #51

@HarshCasper

Description

@HarshCasper

Hey folks πŸ‘‹

I'm Harsh from the LocalStack team. Wanted to flag an upcoming change that will directly affect users of this library.

What's changing: Starting March 23, 2026, localstack/localstack:latest on Docker Hub will consolidate into a single unified image that requires authentication via a LOCALSTACK_AUTH_TOKEN. The free Community image, as it exists today, will no longer be available under that tag without an auth token set.

What this means for this repo:

The README currently points users to the official LocalStack installation guide and recommends running LocalStack via Docker or docker-compose β€” both of which will be affected. Any user who pulls localstack/localstack:latest without an auth token after March 23 will get an authentication error when trying to start LocalStack, which will block the .NET client from working entirely.

The places most likely to need updating:

  • The Prerequisites section, which references pulling and running LocalStack via Docker
  • Any sandbox applications or integration test setups in tests/sandboxes that spin up a LocalStack container
  • CI/CD pipelines (.github/workflows/ci-cd.yml) if they pull the community image

What users will need to do:

  1. Sign up for a free LocalStack account at localstack.cloud
  2. Generate an auth token from the LocalStack Web App
  3. Set LOCALSTACK_AUTH_TOKEN as an environment variable before starting the LocalStack container

For Docker-based setups, this looks like:

docker run --rm -it \
  -e LOCALSTACK_AUTH_TOKEN=$LOCALSTACK_AUTH_TOKEN \
  -p 4566:4566 \
  localstack/localstack

For docker-compose, adding the following under the LocalStack service:

environment:
  - LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN}

The good news: A free tier is staying β€” no one has to pay. CI credits are now unlimited on all plans, including free, and open-source projects like this one can apply for free access to paid plans.

Full details in our announcements:

Happy to help with any doc updates, review PRs, or answer questions. Let us know if there's anything we can do to make this easier β€” and thanks for maintaining this library for the .NET community! πŸ™

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions