Fixed the docker run command example which

had a ` instead of a '. This caused the command to never
terminate whene executing.
This commit is contained in:
Igor Wolbers
2023-03-23 10:28:53 -04:00
committed by Sebastian Goscik
parent b46c9485c8
commit c6584759d9

View File

@@ -91,7 +91,7 @@ docker run \
-e UFP_SSL_VERIFY='false' \
-e RCLONE_DESTINATION='my_remote:/unifi_protect_backup' \
-v '/path/to/save/clips':'/data' \
-v `/path/to/rclone.conf':'/config/rclone/rclone.conf' \
-v '/path/to/rclone.conf':'/config/rclone/rclone.conf' \
-v '/path/to/save/database':/config/database/ \
ghcr.io/ep1cman/unifi-protect-backup
```