Comment on page
Docker
The repository that contains the Docker files for TileDB:
Note that this contains only the TileDB core (C/C++) library and the Python bindings. The reason we exclude all the other bindings (e.g., Java) is to keep the Docker image size relatively small.
Download the prebuilt Docker images from Dockerhub:
docker pull tiledb/tiledb:<version>
docker run -it tiledb/tiledb:<version>
- 1.
- 2.Clone the
TileDB-Docker
repo and build the images:
git clone https://github.com/TileDB-Inc/TileDB-Docker
cd TileDB-Docker
docker build -t tiledb:base base
docker build -t tiledb:release release
There is also a
tiledb:dev
image if you'd like the latest and greatest (but potentially unstable) TileDB version.To run:
docker run -it tiledb:release
If you'd like to build TileDB with optional components such as HDFS support, use the
enable
build argument when building the images, e.g.:docker build --build-arg enable=hdfs -t tiledb:release
Last modified 4yr ago