Sha256: e566cb1c499330f92aa1b66d7b545001abb92ba59b3114dfc52fbd218886ec8e

Contents?: true

Size: 468 Bytes

Versions: 65

Compression:

Stored size: 468 Bytes

Contents

#!/bin/sh
command -v docker > /dev/null 2>&1 || {
  echo "Unable to find \`docker' on your \$PATH, is it installed?" >&2
  exit 1
}

docker version | grep -q "Server version\|Server:" || {
  echo "Unable to run \`docker version', the docker daemon may not be running" >&2

  if [ $UID -eq 0 ]; then
    echo "Please ensure \`sudo docker version' succeeds and try again" >&2
  else
    echo "Please ensure \`docker version' succeeds and try again" >&2
  fi

  exit 1
}

Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
codeclimate-0.65.0 bin/check
codeclimate-0.64.0 bin/check
codeclimate-0.63.7 bin/check
codeclimate-0.63.6 bin/check
codeclimate-0.63.5 bin/check
codeclimate-0.63.4 bin/check
codeclimate-0.63.3 bin/check
codeclimate-0.63.2 bin/check
codeclimate-0.63.1 bin/check
codeclimate-0.63.0 bin/check
codeclimate-0.62.0 bin/check
codeclimate-0.61.1 bin/check
codeclimate-0.61.0 bin/check
codeclimate-0.60.1 bin/check
codeclimate-0.60.0 bin/check
codeclimate-0.59.1 bin/check
codeclimate-0.59.0 bin/check
codeclimate-0.58.0 bin/check
codeclimate-0.57.0 bin/check
codeclimate-0.56.0 bin/check