您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

docker-healthcheck.sh 267B

123456789
  1. #!/usr/bin/env bash
  2. SYSPROPS_FILE=${DATADIR}/system.properties
  3. if [ -f "${SYSPROPS_FILE}" ]; then
  4. SYSPROPS_PORT=`grep "^unifi.https.port=" ${SYSPROPS_FILE} | cut -d'=' -f2`
  5. fi
  6. PORT=${SYSPROPS_PORT:-8443}
  7. curl --max-time 5 -kILs --fail https://localhost:${PORT}