Docker
Added new environment variable INSECURE to skip SSL verification
This commit is contained in:
parent
8135b708f4
commit
7ea0ee8355
1 changed files with 4 additions and 0 deletions
|
@ -38,6 +38,10 @@ if [ ! -z "$LOG_LEVEL" ]; then
|
||||||
args="-l $LOG_LEVEL $args"
|
args="-l $LOG_LEVEL $args"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$INSECURE" = "true" ]; then
|
||||||
|
args="-k $args"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
BASEDIR=$(dirname "$0")
|
BASEDIR=$(dirname "$0")
|
||||||
echo $args | xargs python3 -u $BASEDIR/immich_auto_album.py
|
echo $args | xargs python3 -u $BASEDIR/immich_auto_album.py
|
Loading…
Reference in a new issue