Skip to content

Latest commit

 

History

History
executable file
·
65 lines (50 loc) · 734 Bytes

README.md

File metadata and controls

executable file
·
65 lines (50 loc) · 734 Bytes

dynamodb local

docker image that loads data / schemas from inside container

Sample Data

    data 
        - (directory | table name)
            - schema.json
            - anything_not_named_schema_loaded_as_records.json

Json can be formatted as a large blob of arrays:

[
    { 
        "inner": {}
    },
    {
        "inner": {}
    }
]

or line by line in these formats:

[
    {},
    {}
]
{},
{}
{}
{}
FROM chadgrant/dynamo:1.4

COPY data /data/

RUN /build.sh

Sample

Sample dockerfile: https://github.com/chadgrant/docker-database/dynamo/sample

Building

make docker-build

Running

make docker-run