Files
komodo/docsite/docs/core-setup.md
2023-04-16 03:23:30 -04:00

857 B

core setup

setting up monitor core is fairly simple. there are some requirements to run monitor core:

  • a valid configuration file
  • an instance of MongoDB to which monitor core can connect
  • docker must be installed on the host

1. create the configuration file

create a configuration file on the system, for example at ~/.monitor/core.config.toml, and copy the example config. fill in all the necessary information before continuing.

2. start monitor core

monitor core is distributed via dockerhub under the public repo mbecker2020/monitor_core.

docker run -d --name monitor-core \
	-v $HOME/.monitor/core.config.toml:/config/config.toml \
	-p 9000:9000 \
	mbecker2020/monitor-core