[Config Support]: Update to .15? #15358
-
Describe the problem you are havingSorry if this is dumb...I want to update to version 0.15.0. I'm running Frigate via Docker & Portainer. After backing everything up, is upgrading as simple as changing the image in the Docker Compose file and the version number in the config file? Or would I need to do anything else? Again sorry if this is a dumb question. Thanks! Version0.14.1-f4f3cfa Frigate config filemqtt:
host: 192.168.107.2
port: 1883
user: user1
password: password1
topic_prefix: frigate
go2rtc:
streams:
FrontPorch:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
FrontPorch_sub:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1
Driveway:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
Driveway_sub:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1
FrontYardRight:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
FrontYardRight_sub:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1
BackDeck:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
BackDeck_sub:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1
BackPatio:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=0
BackPatio_sub:
- rtsp://admin:[email protected]:554/cam/realmonitor?channel=1&subtype=1
detectors:
coral:
type: edgetpu
device: usb
cameras:
FrontPorch:
ui:
order: 1
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/FrontPorch
input_args: preset-rtsp-restream
roles:
- record
- path: rtsp://127.0.0.1:8554/FrontPorch_sub
input_args: preset-rtsp-restream
roles:
- detect
detect:
enabled: true
width: 704
height: 480
fps: 10
record:
enabled: true
retain:
days: 5
events:
retain:
default: 30
mode: motion
objects:
track:
- person
- dog
- cat
- bear
Driveway:
ui:
order: 2
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/Driveway
input_args: preset-rtsp-restream
roles:
- record
- path: rtsp://127.0.0.1:8554/Driveway_sub
input_args: preset-rtsp-restream
roles:
- detect
detect:
enabled: true
width: 704
height: 480
fps: 10
record:
enabled: true
retain:
days: 5
events:
retain:
default: 30
mode: motion
objects:
track:
- person
- dog
- cat
- bear
mask: 0.189,0.697,0.812,0.743,1,0.982,0.001,0.996,0.004,0.703
FrontYardRight:
ui:
order: 3
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/FrontYardRight
input_args: preset-rtsp-restream
roles:
- record
- path: rtsp://127.0.0.1:8554/FrontYardRight_sub
input_args: preset-rtsp-restream
roles:
- detect
detect:
enabled: true
width: 704
height: 480
fps: 10
record:
enabled: true
retain:
days: 5
events:
retain:
default: 30
mode: motion
objects:
track:
- person
- dog
- cat
- bear
BackDeck:
ui:
order: 4
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/BackDeck
input_args: preset-rtsp-restream
roles:
- record
- path: rtsp://127.0.0.1:8554/BackDeck_sub
input_args: preset-rtsp-restream
roles:
- detect
detect:
enabled: true
width: 704
height: 480
fps: 10
record:
enabled: true
retain:
days: 5
events:
retain:
default: 30
mode: motion
objects:
track:
- person
- dog
- cat
- bear
BackPatio:
ui:
order: 5
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/BackPatio
input_args: preset-rtsp-restream
roles:
- record
- path: rtsp://127.0.0.1:8554/BackPatio_sub
input_args: preset-rtsp-restream
roles:
- detect
detect:
enabled: true
width: 704
height: 480
fps: 10
record:
enabled: true
retain:
days: 5
events:
retain:
default: 30
mode: motion
objects:
track:
- person
- dog
- cat
- bear
version: 0.14 Relevant Frigate log outputn/a Relevant go2rtc log outputn/a Frigate statsn/a Operating systemDebian Install methodDocker Compose docker-compose file or Docker CLI commandversion: "3.9"
services:
frigate:
container_name: frigate
privileged: true # this may not be necessary for all setups
restart: unless-stopped
image: ghcr.io/blakeblackshear/frigate:stable
shm_size: "256mb" # update for your cameras based on calculation above
devices:
- /dev/bus/usb:/dev/bus/usb # Passes the USB Coral, needs to be modified for other versions
- /dev/apex_0:/dev/apex_0
- /dev/video11:/dev/video11 # For Raspberry Pi 4B
- /dev/dri/renderD128:/dev/dri/renderD128 # For intel hwaccel, needs to be updated for your hardware
volumes:
- /etc/localtime:/etc/localtime:ro
- /home/user/frigate:/config
- /media/user/T7:/media/frigate
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "8971:8971"
- "5000:5000" # Internal unauthenticated access. Expose carefully.
- "8554:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
FRIGATE_RTSP_PASSWORD: "password" Object DetectorCoral Screenshots of the Frigate UI's System metrics pagesNo response Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Answered by
hawkeye217
Dec 5, 2024
Replies: 1 comment 3 replies
-
Yes. Make sure you read the release notes thoroughly as well. https://github.com/blakeblackshear/frigate/releases/tag/v0.15.0-beta2 |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
templeowls21
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. Make sure you read the release notes thoroughly as well.
https://github.com/blakeblackshear/frigate/releases/tag/v0.15.0-beta2