From d786fe44ca3521d19ac00ace7d0f564309ba7009 Mon Sep 17 00:00:00 2001 From: tanim-islm <101572730+tanim-islm@users.noreply.github.com> Date: Wed, 10 Jan 2024 11:20:42 -0500 Subject: [PATCH] Update agent-docker-install.md Fix the paths specified --- docs/agent-docker-install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/agent-docker-install.md b/docs/agent-docker-install.md index 86bbb05..26076f5 100755 --- a/docs/agent-docker-install.md +++ b/docs/agent-docker-install.md @@ -30,13 +30,13 @@ RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y formant-agent -- The last step is to startup the agent when your container starts. If you are using the entrypoint directive with a shell script you can add: ```bash -/usr/lib/formant/formant-agent & +/usr/lib/formant/agent/formant-agent & ``` You can send the agent logs to `/dev/null` as well to not intefere with your application's output: ```bash -/usr/lib/formant/formant-agent > /dev/null 2>&1 & +/usr/lib/formant/agent/formant-agent > /dev/null 2>&1 & ``` To it to run the agent as a forked process.