I'm trying to start a DynamoDB Local Docker container with the -shareDb option but it failes with the message "Error while parsing options. Unrecognized option: -shareDb".
The docker image is from amazon/dynamodb-local and I'm starting using a docker-compose file.
The container starts okay without the -shareDb option.
Below is the docker-compose file I'm using:
version: '3'
services:
dynamodb:
image: amazon/dynamodb-local
ports:
- "8000:8000"
command: "-jar DynamoDBLocal.jar -shareDb -dbPath ."
app: