TypeDB Community Edition
Distribution archive
Download the latest distribution of TypeDB CE from the table below.
Release notes | macOS | Linux | Windows |
---|---|---|---|
For all versions, see the Packages page.
Docker
To pull the latest TypeDB CE Docker image:
docker pull typedb/typedb:latest
You can replace latest
with a version number to get a specific version of TypeDB CE.
To check the list of available versions,
see the Releases page.
Run
To create a new Docker container with TypeDB CE server:
docker volume create typedb-data
docker create --name typedb -v typedb-data:/opt/typedb-all-linux-x86_64/server/data -p 1729:1729 --platform linux/amd64 typedb/typedb:latest
Where typedb
is the name of the container, and typedb-data
is the name of the volume to persist data. The --platform linux/amd64
parameter is required to run the TypeDB container on macOS with the arm64
architecture.
To start the created Docker container, or restart a stopped container:
docker start typedb
To stop a running Docker container:
docker stop typedb