12 lines
227 B
Plaintext
12 lines
227 B
Plaintext
|
#!/usr/bin/with-contenv bash
|
||
|
|
||
|
if [ "$ENABLE_FILEBROWSER" = false ] ; then
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
/usr/local/bin/filebrowser \
|
||
|
-d /opt/filebrowser/pictures.db \
|
||
|
-r /opt/pictures \
|
||
|
--img-processors 1 \
|
||
|
--disable-thumbnails
|