We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents abf855b + 8af3c67 commit 08cc122Copy full SHA for 08cc122
README.md
@@ -99,8 +99,11 @@ You install the runtime interface emulator to your local machine. When you run t
99
100
2. Run your Lambda image function using the docker run command.
101
102
- `docker run -d -v ~/.aws-lambda-rie:/aws-lambda -p 9000:8080 myfunction:latest
103
- --entrypoint /aws-lambda/aws-lambda-rie <image entrypoint> <(optional) image command>`
+ ```
+ docker run -d -v ~/.aws-lambda-rie:/aws-lambda -p 9000:8080 \
104
+ --entrypoint /aws-lambda/aws-lambda-rie \
105
+ myfunction:latest <image entrypoint> <(optional) image command>
106
+ ````
107
108
This runs the image as a container and starts up an endpoint locally at `localhost:9000/2015-03-31/functions/function/invocations`.
109
0 commit comments