Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/agent-docker-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down