HoraeDB is a high-performance, distributed, schema-less, cloud native time-series database that can handle both time-series and analytics workloads.
You can use command below to start a standalone server in background:
docker run -d --name horaedb-server \ -p 8831:8831 \ -p 3307:3307 \ -p 5440:5440 \ horaedb/horaedb-server:$(version)
HoraeDB will listen three ports when started:
There are some files used by server inside Docker image, the following one is the most important:
/etc/horaedb/horaedb.toml, configYou overwrite config with this command:
docker run -d --name horaedb-server \ -p 8831:8831 \ -p 3307:3307 \ -p 5440:5440 \ -v $(path/to/config):/etc/horaedb/horaedb.toml \ horaedb/horaedb-server:$(version)