Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rgregg authored Oct 7, 2024
1 parent 5e75a5e commit 124c723
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,26 @@ logging:
path: "./logs/frigate-processor.log"
max-keep: 10
```
## Running with Docker Compose
The easiest way to run FEP is to add it to your Docker Compose environment where you are already
running Frigate and MQTT:
```yaml
services:
frigate:
# your frigate configuration here
event-processor:
container_name: frigate-event-processor
image: rgregg/frigate-event-processor:main
restart: unless-stopped
volumes:
- ./fep/logs:/app/logs
- ./fep/config.yaml:/app/config.yaml:ro
depends_on:
- frigate
```
FEP is light weight and only requires access to your MQTT server - you can run it on any box that
has access to MQTT.

0 comments on commit 124c723

Please sign in to comment.