All commands to cloudformation fail

Issue #14 resolved
Peter McGuire created an issue

Hi there,

I'm trying to use cloudformation to deploy a stack (or do anything), and I get this:

('Connection aborted.', error(61, 'Connection refused'))

Version is most recent docker image (0.4.0)

Comments (3)

  1. Waldemar Hummer Account Deactivated

    Thanks for the report. This is a documentation bug, I'm assuming you are using the command from the README which reads:

    docker run -it -p 4567-4580:4567-4580 -p 8080:8080 atlassianlabs/localstack
    

    whereas instead it should be :

    docker run -it -p 4567-4581:4567-4581 -p 8080:8080 atlassianlabs/localstack
    

    Once you run the second command above, are you able to connect to CloudFormation?

    $ aws --endpoint-url=http://localhost:4581 cloudformation list-stacks
    {
        "StackSummaries": []
    }
    

    We will update the README with the correct command shortly.

  2. Peter McGuire reporter

    Works when using this docker command:

    docker run -it -p 4567-4581:4567-4581 -p 8080:8080 atlassianlabs/localstack

  3. Log in to comment