Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
DynamoDB docker-compose.yaml
version: '3'
services:
dynamodb:
command: "-jar DynamoDBLocal.jar -sharedDb -dbPath ./data"
image: "amazon/dynamodb-local:latest"
ports:
- "8000:8000"
volumes:
- "./docker/dynamodb:/home/dynamodblocal/data"
working_dir: /home/dynamodblocal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment