Docker arguments in SCALE containers?

oguruma

Patron
Joined
Jan 2, 2016
Messages
226
I'm trying to set up Frigate in a Docker container. The recommended Docker container looks like:

docker run -d \ --name frigate \ --restart=unless-stopped \ --mount type=tmpfs,target=/tmp/cache,tmpfs-size=1000000000 \ --device /dev/bus/usb:/dev/bus/usb \ --device /dev/dri/renderD128 \ --shm-size=64m \ -v /path/to/your/storage:/media/frigate \ -v /path/to/your/config.yml:/config/config.yml \ -v /etc/localtime:/etc/localtime:ro \ -e FRIGATE_RTSP_PASSWORD='password' \ -p 5000:5000 \ -p 8554:8554 \ -p 8555:8555/tcp \ -p 8555:8555/udp \ ghcr.io/blakeblackshear/frigate:stable

I don't see an option to give the --mount type=tmpfs,target=/tmp/cache,tmpfs-size=1000000000 and other arguments in the SCALE UI, however.

Is there a way to do this?
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,703
I don't see an option to give the --mount type=tmpfs,target=/tmp/cache,tmpfs-size=1000000000 and other arguments in the SCALE UI, however.

Is there a way to do this?
The Launch Docker Container option doesn't offer it.

You can do it via the TrueCharts App for Frigate if you want to go down that path.
 
Top