Skip to content

Instantly share code, notes, and snippets.

@msfidelis
Created March 12, 2019 00:28
Show Gist options
  • Save msfidelis/9027156938c56d1ba8c4218653bd6b62 to your computer and use it in GitHub Desktop.
Save msfidelis/9027156938c56d1ba8c4218653bd6b62 to your computer and use it in GitHub Desktop.
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