docs error : Unsupported config option for services.frigate: 'runtime'
See original GitHub issueFollowing the docs on this page don’t work. https://blakeblackshear.github.io/frigate/configuration/nvdec/
# docker-compose up
ERROR: The Compose file './docker-compose.yaml' is invalid because:
Unsupported config option for services.frigate: 'runtime'
# cat /etc/docker/daemon.json
{
"runtimes": {
"nvidia": {
"path": "nvidia-container-runtime",
"runtimeArgs": []
}
}
}
version: '3.6'
services:
frigate:
container_name: frigate
restart: unless-stopped
privileged: true
#image: blakeblackshear/frigate:stable-amd64
image: blakeblackshear/frigate:stable-amd64nvidia
runtime: nvidia
environment:
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,utility,video
volumes:
#- /dev/bus/usb:/dev/bus/usb
- /etc/localtime:/etc/localtime:ro
- ./config:/config
- ./clips:/media/frigate/clips
- ./recordings:/media/frigate/recordings
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- '5000:5000'
- '1935:1935' # RTMP feeds
environment:
FRIGATE_RTSP_PASSWORD: 'password'
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (1 by maintainers)
Top Results From Across the Web
docker-compose : Unsupported config option for services ...
Since this is the first result on Googling "docker-compose Unsupported config option for services", I would like to add that the most common...
Read more >General Discussions - Docker Community Forums
Can someone please help? I am getting an error of: ./docker-compose.yml is invalid because: Unsupported config option for services.app: 'db'.
Read more >FAQ - Coder One
ERROR : The Compose file './docker-compose.yml' is invalid because: Unsupported config option for services.agent-b: 'extends'.
Read more >Larevel Sail up. Docker Unsupported config option ... - Laracasts
Docker Unsupported config option for services.meilisearch: 'platform'. I am trying run the example by documentation The first step "curl -s "https://laravel.
Read more >Hardware Acceleration | Jellyfin
Select a valid hardware acceleration option from the drop-down menu, indicate a device if applicable, and check Enable hardware encoding to enable encoding...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
running ubuntu 20.04, installed docker & docker-compose with
apt install
and docker-compose.yml version set highest possible is 3.8.still that error…
i will see how to update docker and docker-compose to higher versions to overcome the error…
edit: i went to: https://docs.docker.com/compose/install/#install-compose did the linux-curl install and have:
new error:
maybe docker update necessary too…
went to: https://docs.docker.com/engine/install/ubuntu/ and have:
the runtime-statement now accepted, my patch for shm-size not working after docker-compose update. but i will try without it
glad to hear that my fiddlings helped somebody 🎉 🤝