Skip to content

Instantly share code, notes, and snippets.

@vnkdj5
Created August 20, 2023 13:36
Show Gist options
  • Save vnkdj5/d9a6133efd9f03183c339cf59d10a8c4 to your computer and use it in GitHub Desktop.
Save vnkdj5/d9a6133efd9f03183c339cf59d10a8c4 to your computer and use it in GitHub Desktop.
Dynamo local docker-compose
version: "3.9"
services:
dynamodb-local:
command: "-jar DynamoDBLocal.jar -sharedDb -dbPath ./data"
image: "amazon/dynamodb-local:latest"
container_name: dynamodb-local
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