dcdn.messpro.xyz Open in urlscan Pro
172.67.176.47  Public Scan

Submitted URL: http://dcdn.messpro.xyz/r/localstack/localstack-pro
Effective URL: https://dcdn.messpro.xyz/r/localstack/localstack-pro
Submission: On October 27 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

GET /search

<form class="MuiBox-root css-11qjisw" method="get" action="/search">
  <div class="MuiAutocomplete-root MuiAutocomplete-fullWidth css-kyydiw">
    <div class="MuiFormControl-root MuiFormControl-marginDense MuiFormControl-fullWidth MuiTextField-root css-18ojofo" data-testid="autocompleteInput">
      <div class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-formControl MuiInputBase-sizeSmall MuiInputBase-adornedStart MuiInputBase-adornedEnd MuiAutocomplete-inputRoot css-19l04qo">
        <div class="MuiInputAdornment-root MuiInputAdornment-positionStart MuiInputAdornment-outlined MuiInputAdornment-sizeSmall css-fiqj4n"><span class="notranslate">​</span><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1cbdi46"
            focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="SearchIcon" fill="none" xmlns="http://www.w3.org/2000/svg">
            <path d="M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="currentColor" fill="none" stroke-width="2" stroke-linecap="round"
              stroke-linejoin="round"></path>
          </svg></div><input aria-invalid="false" autocomplete="off" id=":r0:" name="q" placeholder="Search Docker Hub" type="text"
          class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputSizeSmall MuiInputBase-inputAdornedStart MuiInputBase-inputAdornedEnd MuiAutocomplete-input MuiAutocomplete-inputFocused css-yzsl2z" aria-autocomplete="list"
          aria-expanded="false" autocapitalize="none" spellcheck="false" role="combobox" value="">
        <div class="MuiInputAdornment-root MuiInputAdornment-positionEnd MuiInputAdornment-outlined MuiInputAdornment-sizeSmall css-3x5r8p">
          <div class="MuiBox-root css-j3iiqs" id="search-keyboard-shortcuts-hint">ctrl+K</div>
        </div>
        <fieldset aria-hidden="true" class="MuiOutlinedInput-notchedOutline css-12wsrvu">
          <legend class="css-w4cd9x"><span class="notranslate">​</span></legend>
        </fieldset>
      </div>
    </div>
  </div>
</form>

Text Content

More Docker. Easy Access. New Streamlined Plans. Learn more.
✕

docker
Hub

ctrl+K
Help
System Theme

Sign InSign up
 1. Explore
 2. /

 3. localstack/localstack-pro


LOCALSTACK/LOCALSTACK-PRO

Sponsored OSS
9

By LocalStack GmbH

•Updated about 8 hours ago

LocalStack Pro is an easy-to-use cloud emulation framework for dev, testing, and
experimentation!

Image
Developer Tools
Pulls

1M+

OverviewTags


OVERVIEW

LocalStack⁠ is a cloud service emulator that runs in a single container on your
laptop or in your CI environment. With LocalStack, you can run your AWS
applications or Lambdas entirely on your local machine without connecting to a
remote cloud provider! Whether you are testing complex CDK applications or
Terraform configurations, or just beginning to learn about AWS services,
LocalStack helps speed up and simplify your testing and development workflow.

LocalStack Pro contains various advanced extensions to the LocalStack base
platform, which is open-source and community driven⁠. LocalStack Pro is
available as a Docker image⁠. You can read more about it on our documentation
for Docker images⁠.

LocalStack also provides additional features to make your life as a cloud
developer easier! Check out LocalStack's Cloud Developer Tools⁠ for more
information.

INSTALLATION

To install LocalStack Pro, refer to our installation guide⁠ and API Key guide⁠.

If you are using the LocalStack Community edition, you can upgrade to LocalStack
Pro by pulling the latest tag of the LocalStack Pro Docker image. Depending on
how you start LocalStack, here’s what you need to look out for:

 * Docker Compose⁠: Change the image property of your service container from
   localstack/localstack to localstack/localstack-pro.
 * LocalStack CLI⁠: The quickest way to get started with LocalStack is by using
   the LocalStack CLI. It allows you to start LocalStack from your command line.
   Please make sure that you have a working docker environment on your machine
   before moving on. To use all of LocalStack’s features we recommend to get a
   LocalStack account and set up your auth token⁠. The CLI starts and manages
   the LocalStack docker container.
 * Docker CLI⁠: Similar to when using Docker Compose, you simply need to specify
   localstack/localstack-pro as the image you want to start.

USAGE

LocalStack Pro image includes Pro services and several advanced features. You
need to provide an Auth Token to start the LocalStack Pro image successfully.
The Auth Token is a personal identifier used for user authentication outside the
LocalStack Web Application, particularly in conjunction with the LocalStack core
cloud emulator. Its primary functions are to retrieve the user’s license and
enable access to advanced features. You can find more information on how to
setup an Auth Token on our Auth Token documentation⁠. You can locate your Auth
Token on the Auth Token page⁠ in the LocalStack Web Application.

To start using LocalStack, check out our documentation at
docs.localstack.cloud⁠.

 * LocalStack Configuration⁠
 * LocalStack in CI⁠
 * LocalStack Integrations⁠
 * LocalStack Tools⁠
 * Understanding LocalStack⁠
 * Troubleshoot

To use LocalStack with a graphical user interface, you can use the following UI
clients:

 * LocalStack Web Application⁠
 * LocalStack Cockpit⁠
 * LocalStack Docker Extension⁠

DOCKER COMPOSE

You can start LocalStack with Docker Compose⁠ by configuring a
docker-compose.yml file. Currently, docker-compose version 1.9.0+ is supported.

version: "3.8"

services:
  localstack:
    container_name: "${LOCALSTACK_DOCKER_NAME:-localstack-main}"
    image: localstack/localstack-pro
    ports:
      - "127.0.0.1:4566:4566"            # LocalStack Gateway
      - "127.0.0.1:4510-4559:4510-4559"  # external services port range
    environment:
      # LocalStack configuration: https://docs.localstack.cloud/references/configuration/
      - DEBUG=${DEBUG:-0}
    volumes:
      - "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
      - "/var/run/docker.sock:/var/run/docker.sock"


Copy

Start the container by running the following command:

$ docker-compose up


Copy

Create an ECR registry with LocalStack's awslocal⁠ CLI:

awslocal ecr create-repository --repository-name test-repository
awslocal ecr describe-repositories --repository-name test-repository


Copy

Notes

 * This command pulls the latest image that is built on every commit. Please
   refer to Base Image Tags to select the image tag you want to use.

 * Mounting the Docker socket /var/run/docker.sock as a volume is required for
   the Lambda service. Check out the Lambda providers⁠ documentation for more
   information.

Please note that there are a few pitfalls when configuring your stack manually
via docker-compose (e.g., required container name, Docker network, volume
mounts, and environment variables). We recommend using the LocalStack CLI to
validate your configuration, which will print warning messages in case it
detects any potential misconfigurations:

$ localstack config validate


Copy

DOCKER CLI

You can directly start the LocalStack container using the Docker CLI. This
method requires more manual steps and configuration, but it gives you more
control over the container settings.

You can start the Docker container simply by executing the following docker run
command:

$ docker run --rm -it -p 4566:4566 -p 4510-4559:4510-4559 localstack/localstack-pro


Copy

Create a CloudFormation Stack named as cfn-quickstart-stack.yaml.

{
  "Resources": {
    "LocalBucket": {
      "Type": "AWS::S3::Bucket",
      "Properties": {
        "BucketName": "cfn-quickstart-bucket"
      }
    }
  }
}


Copy

You can deploy the CloudFormation stack using the AWS CLI⁠ with the deploy⁠
command. The deploy command creates and updates CloudFormation stacks. Run the
following command to deploy the stack:

awslocal cloudformation deploy \
    --stack-name cfn-quickstart-stack \
    --template-file "./cfn-quickstart-stack.yaml"


Copy

Notes

 * This command reuses the image if it’s already on your machine, i.e. it will
   not pull the latest image automatically from Docker Hub.

 * This command does not bind all ports that are potentially used by LocalStack,
   nor does it mount any volumes. When using Docker to manually start
   LocalStack, you will have to configure the container on your own (see
   docker-compose.yml⁠ and Configuration⁠). This could be seen as the “expert
   mode” of starting LocalStack. If you are looking for a simpler method of
   starting LocalStack, please use the LocalStack CLI⁠.

RELEASES

Please refer to GitHub releases⁠ to see the complete list of changes for each
release. For extended release notes, please refer to the LocalStack Discuss⁠.

BASE IMAGE TAGS

We do push a set of different image tags for the LocalStack Docker images. When
using LocalStack, you can decide which tag you want to use.These tags have
different semantics and will be updated on different occasions:

 * latest (default)
   * This is our default tag. It refers to the latest commit which has been
     fully tested using our extensive integration test suite.
   * This also entails changes that are part of major releases, which means that
     this tag can contain breaking changes.
   * This tag should be used if you want to stay up-to-date with the latest
     changes.
 * stable
   * This tag refers to the latest tagged release. It will be updated with every
     release of LocalStack.
   * This also entails major releases, which means that this tag can contain
     breaking changes.
   * This tag should be used if you want to stay up-to-date with releases, but
     don't necessarily need the latest and greatest changes right away.
 * <major> (e.g. 3)
   * These tags can be used to refer to the latest release of a specific major
     release. It will be updated with every minor and patch release within this
     major release.
   * This tag should be used if you want to avoid any potential breaking
     changes.
 * <major>.<minor> (e.g. 3.0)
   * These tags can be used to refer to the latest release of a specific minor
     release. It will be updated with every patch release within this minor
     release.
   * This tag can be used if you want to avoid any bigger changes, like new
     features, but still want to update to the latest bugfix release.
 * <major>.<minor>.<patch> (e.g. 3.0.2)
   * These tags can be used if you want to use a very specific release. It will
     not be updated.
   * This tag can be used if you really want to avoid any changes to the image
     (not even minimal bug fixes).

WHERE TO GET HELP

Get in touch with the LocalStack Team to report 🐞 issues⁠, upvote 👍 feature
requests⁠, 🙋🏽 ask support questions⁠, or 🗣️ discuss local cloud development:

 * LocalStack Slack Community⁠
 * LocalStack Discussion Page⁠
 * LocalStack GitHub Issue tracker⁠
 * Getting Started - FAQ⁠


DOCKER PULL COMMAND

docker pull localstack/localstack-pro

Copy

WHY

OverviewWhat is a Container

PRODUCTS

Product Overview

PRODUCT OFFERINGS

Docker DesktopDocker Hub

FEATURES

Container RuntimeDeveloper ToolsDocker AppKubernetes

DEVELOPERS

Getting StartedPlay with DockerCommunityOpen SourceDocumentation

COMPANY

About UsResourcesBlogCustomersPartnersNewsroomEvents and WebinarsCareersContact
UsSystem Status⁠

--------------------------------------------------------------------------------

© 2024 Docker, Inc. All rights reserved. | Terms of Service | Subscription
Service Agreement | Privacy | Legal


Cookies Settings
By clicking “Accept All Cookies”, you agree to the storing of cookies on your
device to enhance site navigation, analyze site usage, and assist in our
marketing efforts.
Cookies Settings Reject All Accept All Cookies



PRIVACY PREFERENCE CENTER

When you visit any website, it may store or retrieve information on your
browser, mostly in the form of cookies. This information might be about you,
your preferences or your device and is mostly used to make the site work as you
expect it to. The information does not usually directly identify you, but it can
give you a more personalized web experience. Because we respect your right to
privacy, you can choose not to allow some types of cookies. Click on the
different category headings to find out more and change our default settings.
However, blocking some types of cookies may impact your experience of the site
and the services we are able to offer.
More information
Allow All


MANAGE CONSENT PREFERENCES

FUNCTIONAL COOKIES

Functional Cookies

These cookies enable the website to provide enhanced functionality and
personalisation. They may be set by us or by third party providers whose
services we have added to our pages. If you do not allow these cookies then some
or all of these services may not function properly.

STRICTLY NECESSARY COOKIES

Always Active

These cookies are necessary for the website to function and cannot be switched
off in our systems. They are usually only set in response to actions made by you
which amount to a request for services, such as setting your privacy
preferences, logging in or filling in forms. You can set your browser to block
or alert you about these cookies, but some parts of the site will not then work.
These cookies do not store any personally identifiable information.

PERFORMANCE COOKIES

Performance Cookies

These cookies allow us to count visits and traffic sources so we can measure and
improve the performance of our site. They help us to know which pages are the
most and least popular and see how visitors move around the site. All
information these cookies collect is aggregated and therefore anonymous. If you
do not allow these cookies we will not know when you have visited our site, and
will not be able to monitor its performance.

TARGETING COOKIES

Targeting Cookies

These cookies may be set through our site by our advertising partners. They may
be used by those companies to build a profile of your interests and show you
relevant adverts on other sites. They do not store directly personal
information, but are based on uniquely identifying your browser and internet
device. If you do not allow these cookies, you will experience less targeted
advertising.

Back Button


COOKIE LIST



Search Icon
Filter Icon

Clear
checkbox label label
Apply Cancel
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

Reject All Confirm My Choices


Back

Documentation
⁠
Forums
⁠
Contact Support
System Status
⁠


Back

 * System Theme
 * Light Theme
 * Dark Theme



Back




Back

Help


System Theme

Docker Suite


Back

Documentation
⁠
Forums
⁠
Contact Support
System Status
⁠


Back

 * System Theme
 * Light Theme
 * Dark Theme



Back

Docker Home
New
Explore and manage your Docker experience.

Docker Admin Console
New
Manage users, control access, & set policies.

Docker Scout
New
Secure your supply chain at every level.

Docker Desktop
Local development, simplified.


Docker Build Cloud
New
Speed up your Docker Builds.