[Support]: Did my update fail ? #22213
-
Describe the problem you are havingI am not sure whether the update failed or that the version number just did not update. The only thing I am uncertain of is whether I have to follow the instructions having docker-compose or just docker (don't know the difference, and chatgpt could explain it to me :( I am running the frigate server on a dedicated HP thin client. Version0.14.1-f4f3cfa What browser(s) are you using?several Frigate config filenot needed i supposeRelevant Frigate log outputnot needed i supposeRelevant go2rtc log outputnot needed i supposeFFprobe output from your cameranot needed i supposeFrigate statsNo response Install methodDocker Compose docker-compose file or Docker CLI commandservices:
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: "128mb"
devices:
- /dev/bus/usb:/dev/bus/usb #Used for Coral if Available
- /dev/video10 #Map the Pi hardware acceleration
volumes:
- /etc/localtime:/etc/localtime:ro
- ./config.yml:/config/config.yml
- ./storage:/media/frigate
- type: tmpfs #Remove this if using a Pi with 2GB or Less RAM
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "5000:5000"
- "8971:8971"
- "8554:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
FRIGATE_RTSP_PASSWORD: "password"Object DetectorCoral Network connectionWired Camera make and modelreolink,chines models Screenshots of the Frigate UI's System metrics pagesAny other information that may be helpful |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
|
Your update appears to have succeeded, but you're running Frigate 0.14.1, not the current stable version.(1) The current stable version of Frigate is 0.17.0.(1) Your System Metrics page shows version Since you're using Docker Compose (you have a Stop the Container:(1) Update Your docker-compose.yml:(1) Your compose file currently uses Pull the Latest Image:(1) Start the Container:(1) Verify the Update:(1) Check the container logs to ensure Frigate starts successfully:(1) Then visit the Frigate Web UI and check the System Metrics page - the version number should now show 0.17.0.(1) Important: Before updating, always backup your 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
In addition to the AI's response above, you should also use the recommended Docker compose file that maps the entire |
Beta Was this translation helpful? Give feedback.
In your screenshot above, you pulled
ghcr.io/blakeblackshear/frigate:0.17.0. You should put that into your docker compose file instead ofghcr.io/blakeblackshear/frigate:stable, or just re-pull usingghcr.io/blakeblackshear/frigate:stable.