feat: Updates readme and adds a bootstrap and start script, since this can't be managed by komodo.

This commit is contained in:
2025-03-19 13:38:04 -04:00
parent 76a65e0365
commit 026acb05ff
3 changed files with 20 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
# komodo-agent
Komodo agent is used to integrate additional servers with komodo.
## Usage
1. Clone the repository or copy the `compose.yaml` file onto the server that you
would like to install the agent on.
2. Generate the `.env` file (or run `source ./bootstrap.sh`).
3. Start the agent `sudo docker compose --env-file .env up -d` (or run `source
./start.sh`)

4
bootstrap.sh Normal file
View File

@@ -0,0 +1,4 @@
#/bin/sh
cp example.env .env
echo "Open the .env file and update the environment variables."

3
start.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
sudo docker compose --env-file .env up -d