fixed DOCKERIZE_ARGS variable check

This commit is contained in:
Eugene Pankov 2022-01-27 14:50:49 +01:00
parent 21024278c6
commit 73a0a80b4a
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -1,5 +1,5 @@
#!/bin/sh
if [ -z "$var" ]; then
if [[ -n "$DOCKERIZE_ARGS" ]]; then
dockerize $DOCKERIZE_ARGS
fi
cd /app