Created
July 6, 2019 18:30
-
-
Save yokada/5e7ff39b91caff0eb6446a3e41465c3d to your computer and use it in GitHub Desktop.
Create AWS StepFunctions Local docker image and container service on your computer.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $ docker-compose up -d | |
# Or, | |
# $ docker-compose up -d --build --force-recreate | |
version: "3" | |
services: | |
sfn: | |
image: amazon/aws-stepfunctions-local:1.0.1 | |
ports: | |
- 18083:8083 | |
environment: | |
- AWS_DEFAULT_REGION=ap-northeast-1 | |
- AWS_ACCESS_KEY=dummy | |
- AWS_SECRET_ACCESS_KEY=dummy | |
- LAMBDA_ENDPOINT=http://localhost:18084 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment