From 727c96f2e8ad3e0d8e3c55cea8dfaf632fdc9d38 Mon Sep 17 00:00:00 2001 From: ulises-jeremias Date: Fri, 19 Jan 2024 00:03:18 -0300 Subject: [PATCH] Update README.md with LocalStack Desktop information Signed-off-by: ulises-jeremias --- localstack/README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/localstack/README.md b/localstack/README.md index 826de09..cae91cb 100644 --- a/localstack/README.md +++ b/localstack/README.md @@ -41,6 +41,10 @@ Once the docker compose is up, it will create the following resources: - [S3 Bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html) - [SQS Queue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/welcome.html) +## LocalStack Desktop + +You can use [LocalStack Desktop](https://docs.localstack.cloud/user-guide/tools/localstack-desktop/) to manage the resources created by the docker compose. + ## Testing the services From outside the container you can execute the following commands to test the service each service: @@ -48,7 +52,7 @@ From outside the container you can execute the following commands to test the se - **DynamoDB** ```sh -$ aws --endpoint-url=http://localhost:4566 dynamodb list-tables +$ awslocal dynamodb list-tables { "TableNames": [ "my_table" @@ -59,7 +63,7 @@ $ aws --endpoint-url=http://localhost:4566 dynamodb list-tables - **Kinesis** ```sh -$ aws --endpoint-url=http://localhost:4566 kinesis list-streams +$ awslocal kinesis list-streams { "StreamNames": [ "my_stream" @@ -70,14 +74,14 @@ $ aws --endpoint-url=http://localhost:4566 kinesis list-streams - **S3** ```sh -$ aws --endpoint-url=http://localhost:4566 s3 ls +$ awslocal s3 ls 2022-08-08 03:16:01 example-bucket ``` - **SQS** ```sh -$ aws --endpoint-url=http://localhost:4566 sqs list-queues +$ awslocal sqs list-queues { "QueueUrls": [ "http://localhost:4566/000000000000/my_queue"