Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 2, 2022 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/6693509665ac197cf8e7309b856c6a37 to your computer and use it in GitHub Desktop.
Save awswithdotnet/6693509665ac197cf8e7309b856c6a37 to your computer and use it in GitHub Desktop.
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