My team is trying to get a local setup for our project. We are running the same docker-compose file with image localstack/localstack:0.8.10
. We are running the same shell script. Our script looks like this...
awslocal sns subscribe \
--topic-arn arn:aws:sns:us-east-1:123456789012:cx-clientcomm-traffic-controller-sent \
--protocol sqs \
--notification-endpoint http://localhost:4576/queue/cx-clientcomm-request-processor-queue
For whatever reason, two of the developers are getting this error. Could not connect to the endpoint URL: http://localhost:4566
for the SQS.
I know this port is used for the latest versions of localstack, but they're running the same image as us.
Any ideas??