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.55.0 bin/check
codeclimate-0.54.0 bin/check
codeclimate-0.53.0 bin/check
codeclimate-0.52.0 bin/check
codeclimate-0.51.3 bin/check
codeclimate-0.51.2 bin/check
codeclimate-0.51.1 bin/check
codeclimate-0.51.0 bin/check
codeclimate-0.50.0 bin/check
codeclimate-0.49.0 bin/check
codeclimate-0.48.0 bin/check
codeclimate-0.47.0 bin/check
codeclimate-0.46.0 bin/check
codeclimate-0.45.0 bin/check
codeclimate-0.44.0 bin/check
codeclimate-0.43.1 bin/check
codeclimate-0.43.0 bin/check
codeclimate-0.42.1 bin/check
codeclimate-0.42.0 bin/check
codeclimate-0.41.0 bin/check