Created
March 12, 2019 00:28
-
-
Save msfidelis/9027156938c56d1ba8c4218653bd6b62 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
version: "3" | |
services: | |
sqs: | |
image: s12v/elasticmq:latest | |
ports: | |
- "9324:9324" | |
networks: | |
- developer | |
dynamo: | |
image: amazon/dynamodb-local:latest | |
ports: | |
- "8000:8000" | |
networks: | |
- developer | |
serverless: | |
build: . | |
volumes: | |
- "./:/app" | |
ports: | |
- "3000:3000" | |
depends_on: | |
- sqs | |
- dynamo | |
networks: | |
- developer | |
networks: | |
developer: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment