Document for LocalStack SQS nd DynamoDB
Document for LocalStack SQS nd DynamoDB
1.Install LocalStack
Official Document link
https://docs.localstack.cloud/getting-started/installation/
localstack –version
What is LocalStack?
2. LocalStack provides an easy-to-use test/mocking framework for
Reduce Cost
Why LocalStack ?¶
What is SQS?
version: '3.0'
services:
localstack:
image: localstack/localstack:latest
environment:
- AWS_DEFAULT_REGION=ap-southeast-1
- EDGE_PORT=4566
- SERVICES=sqs
ports:
- '4566:4566'
volumes:
- "${TMPDIR:-/tmp/localstack}:/tmp/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
Podman-compose up -d
Container is up check using podman ps
To Delete Queue
aws --endpoint-url=http://localhost:4566 sqs delete-queue --queue-url
http://localhost:4566/000000000000/ WorldwideMoney