Skip to content
immudb docker run -d --net host -it --name immudb codenotary/immudb:latest

S3 Storage

immudb can store its data in the Amazon S3 service (or a compatible alternative). The following example shows how to run immudb with the S3 storage enabled:

1export IMMUDB_S3_STORAGE=true
2export IMMUDB_S3_ACCESS_KEY_ID=<S3 ACCESS KEY ID>
3export IMMUDB_S3_SECRET_KEY=<SECRET KEY>
4export IMMUDB_S3_BUCKET_NAME=<BUCKET NAME>
5export IMMUDB_S3_LOCATION=<AWS S3 REGION>
6export IMMUDB_S3_PATH_PREFIX=testing-001
7export IMMUDB_S3_ENDPOINT="https://${IMMUDB_S3_BUCKET_NAME}.s3.amazonaws.com"
8
9./immudb
Edit this page on GitHub Last updated