Skip to content

Commit

Permalink
Docker
Browse files Browse the repository at this point in the history
Added new environment variable INSECURE to skip SSL verification
  • Loading branch information
Salvoxia committed Jul 30, 2024
1 parent 8135b70 commit 7ea0ee8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/immich_auto_album.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ if [ ! -z "$LOG_LEVEL" ]; then
args="-l $LOG_LEVEL $args"
fi

if [ "$INSECURE" = "true" ]; then
args="-k $args"
fi


BASEDIR=$(dirname "$0")
echo $args | xargs python3 -u $BASEDIR/immich_auto_album.py

0 comments on commit 7ea0ee8

Please sign in to comment.