According to docs there are 2 flags that affects run of dynamodb-local
-inMemory
-> makes all data to persist in RAM only, when service is terminated - all data gets deleted
-sharedDB
-> makes all logins to be written to the same shared file
no switces -> each credentials login persists data in different file - this is the default behavior
However, if you look in docker.hub you'll see that the default behavior when running dynamodb-local in docker is with the -inMemory
flag. but I don't want it, I want the real default behavior.
How can I override it?