Sha256: f4c38637e29f21865ba29826a3c7c28bbe922616cfd7cceac3f9eb19bd4ef193

Contents?: true

Size: 479 Bytes

Versions: 101

Compression:

Stored size: 479 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 [ "$(id --user)" -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

101 entries across 101 versions & 2 rubygems

Version Path
codeclimate-0.78.0 bin/check
codeclimate-0.77.0 bin/check
codeclimate-0.76.0 bin/check
codeclimate-0.75.0 bin/check
codeclimate-0.74.0 bin/check
codeclimate-0.73.0 bin/check
codeclimate-0.72.0 bin/check
codeclimate-0.71.2 bin/check
codeclimate-0.71.1 bin/check
codeclimate-0.71.0 bin/check
codeclimate-0.70.6 bin/check
codeclimate-0.70.5 bin/check
codeclimate-0.70.4 bin/check
codeclimate-0.70.3 bin/check
codeclimate-0.70.2 bin/check
codeclimate-0.70.1 bin/check
codeclimate-0.70.0 bin/check
codeclimate-0.69.0 bin/check
codeclimate-0.68.0 bin/check
codeclimate-0.67.0 bin/check