Skip to content

Commit

Permalink
Merge pull request #12474 from marcinczeczko/fix-amazon-guides
Browse files Browse the repository at this point in the history
Missing publish option in kms docker + specify version of localhost i…
  • Loading branch information
gsmet committed Oct 2, 2020
2 parents 59ee896 + d851f7e commit 827e76f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/amazon-kms.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The easiest way to start working with KMS is to run a local instance as a contai

[source,shell,subs="verbatim,attributes"]
----
docker run --rm --name local-kms 8011:4599 -e SERVICES=kms -e START_WEB=0 -d localstack/localstack:0.11.1
docker run --rm --name local-kms --publish 8011:4599 -e SERVICES=kms -e START_WEB=0 -d localstack/localstack:0.11.1
----
This starts a KMS instance that is accessible on port `8011`.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/amazon-s3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The easiest way to start working with S3 is to run a local instance as a contain

[source,shell,subs="verbatim,attributes"]
----
docker run -it --publish 8008:4566 -e SERVICES=s3 -e START_WEB=0 localstack/localstack
docker run -it --publish 8008:4566 -e SERVICES=s3 -e START_WEB=0 localstack/localstack:0.11.5
----
This starts a S3 instance that is accessible on port `8008`.

Expand Down

0 comments on commit 827e76f

Please sign in to comment.