The preferred method of running TerminusDB locally is by using docker compose
. The Docker image can be used to run TerminusDB
on servers whereas the docker compose is the preferred method of running TerminusDB and its TerminusCMS components locally.
See the main TerminusDB repository and our documentation for more information.
Script for running TerminusDB with Docker.
TerminusDB is an open-source graph database and document store. It allows you to link JSON documents in a powerful knowledge graph all through a simple document API.
In case you don't want to run TerminusDB yourself, try out TerminusX, a hosted data platform, built on TerminusDB, that allows you to build, deploy, execute, monitor, and share versioned data products. TerminusX is in public beta and you can sign up now.
Since this script uses the TerminusDB Docker container, you need to have Docker running.
On Windows and Mac, Docker Desktop can be downloaded here: https://www.docker.com/products/docker-desktop
Note that on Windows, the default memory allowed for Docker is 2GB. Since this is an in-memory database, bigger databases require more memory. Therefore raise the default allowed memory usage to a higher value in the Docker Desktop settings.
On Linux, use your distro's package manager, or find more information here: https://www.docker.com/products/container-runtime
This script is distributed via GitHub, so you will need git to clone and update it, if you don't already have git, you can download it here: https://git-scm.com/downloads
Windows users should use the application "Git Bash" for all terminal commands described below, this application comes with Git for Windows.
Sudo is optional. As letting unprivileged users run docker is insecure, this script uses sudo by default if it is available.
Most users will not need to do anything here, sudo is installed by default on Macs and many populer Linux distros such as Fedora, Red Hat, Debian, Ubuntu and Mint. Linux users who use minmal distros such as Archlinux, are advised to install sudo and confugure their sudoers file accordingly.
Windows users do not need to do anything here.
git clone https://github.com/terminusdb/terminusdb-bootstrap
cd terminusdb-bootstrap
./terminusdb-container run
Unable to find image 'terminusdb/terminusdb-server:latest' locally
latest: Pulling from terminusdb/terminusdb-server
8f91359f1fff: Pulling fs layer
939634dec138: Pulling fs layer
f30474226dd6: Pulling fs layer
32a63113e3ae: Pulling fs layer
ae35de9092ce: Pulling fs layer
023c02983955: Pulling fs layer
d9fa4a1acf93: Pulling fs layer
[ ... ]
You may need to remove previous volumes or you may encounter bugs or the old console.
Warning: This will lead to losing local data.
./terminusdb-container rm
This will delete storage volume
Are you sure? [y/N] y
./terminusdb-container
USAGE:
terminusdb-container [COMMAND]
help show usage
run run container
cli use the terminusdb cli
stop stop container
attach attach to prolog shell
exec execute a command inside the container
rm remove volumes
That's it! You're ready to go!
Oh, and flattery motivates us, please give us a star here: https://github.com/terminusdb/terminusdb
This script is designed to "work out of the box," however, there may be situations where advanced users want to override some of it's defaults, this is done by setting enviroment variables.
To prevent accidental insecure deployments, the Docker container binds to the IP 127.0.0.1 and therefore the server will only be accessible on the local machine, and not from any other machine over the network.
If you would like to deploy to a server, you will need to enable HTTPS by putting TerminusDB behind a reverse proxy.
ENV
FileThe script sources a file called ENV
if it is found in the current directory.
See ENV.example
for examples of the environment variables that can be set.
To have environment variables set every time you run ./terminusdb-container
,
follow these steps:
ENV.example
to ENV
.ENV
: uncomment the lines you want to change and set the values.ENV name | Default value | Purpose |
---|---|---|
TERMINUSDB_DOCKER | sudo docker | Default docker command |
TERMINUSDB_CONTAINER | terminusdb-server | Name of the running container |
TERMINUSDB_REPOSITORY | terminusdb/terminusdb-server | Docker image |
TERMINUSDB_NETWORK | bridge | Docker network mode |
TERMINUSDB_TAG | The latest version tag of terminusdb-server | TerminusDB docker image version |
TERMINUSDB_STORAGE | terminusdb_storage_local | Storage volume name |
TERMINUSDB_PORT | 6363 | Port to run TerminusDB |
TERMINUSDB_LOCAL | Local folder to mount inside container | |
TERMINUSDB_SERVER | 127.0.0.1 | Server on which TerminusDB will run |
TERMINUSDB_PASS | root | Password for accessing TerminusDB |
TERMINUSDB_DASHBOARD_LOCAL_PATH | "" | Path to a local version of the dashboard |
These are examples of environment variables you can set when running
./terminusdb-container
.
TERMINUSDB_LOCAL=/path/to/dir ./terminusdb-container [COMMAND]
TERMINUSDB_STORAGE=terminus_storage_local ./terminusdb-container [COMMAND]
TERMINUSDB_TAG=latest ./terminusdb-container [COMMAND]
TERMINUSDB_TAG=dev ./terminusdb-container [COMMAND]
TERMINUSDB_TAG=v1.1.2 ./terminusdb-container [COMMAND]
TERMINUSDB_DOCKER=docker ./terminusdb-container [COMMAND]
TERMINUSDB_DOCKER="podman" ./terminusdb-container [COMMAND]
See the source code to find the other environment variables that can be set.