From dabb36ad9366f30fd4b13037ad544f47100cb9d9 Mon Sep 17 00:00:00 2001 From: yllar Date: Tue, 29 Dec 2020 15:47:11 +0200 Subject: [PATCH] Update README.md change tmpfs size from 100MB to 1GB --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05cb53f5a..0409ff3f7 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ services: - type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear target: /tmp/cache tmpfs: - size: 100000000 + size: 1000000000 ports: - "5000:5000" - "1935:1935" # RTMP feeds @@ -114,7 +114,7 @@ If you can't use docker compose, you can run the container with something simila docker run --rm \ --name frigate \ --privileged \ ---mount type=tmpfs,target=/tmp/cache,tmpfs-size=100000000 \ +--mount type=tmpfs,target=/tmp/cache,tmpfs-size=1000000000 \ -v /dev/bus/usb:/dev/bus/usb \ -v :/media/frigate/clips \ -v :/media/frigate/recordings \