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.96.0 bin/check
codeclimate-0.95.0 bin/check
codeclimate-0.94.1 bin/check
codeclimate-0.94.0 bin/check
codeclimate-0.93.0 bin/check
codeclimate-0.92.1 bin/check
codeclimate-0.92.0 bin/check
codeclimate-0.91.0 bin/check
codeclimate-0.90.0 bin/check
codeclimate-0.89.0 bin/check
codeclimate-0.88.0 bin/check
codeclimate-0.87.5 bin/check
codeclimate-0.87.4 bin/check
codeclimate-0.87.3 bin/check
codeclimate-0.87.2 bin/check
codeclimate-0.87.1 bin/check
codeclimate-0.87.0 bin/check
codeclimate-0.86.0 bin/check
codeclimate-0.85.29 bin/check
codeclimate-0.85.28 bin/check