Sign inSign up

allingeek/flocker-cli

By allingeek

Updated almost 10 years ago

Use the flocker-ca command without all of the installation hassle and portability issues.

Image
0

365

allingeek/flocker-cli repository overview

Container ecosystem companies should have better installation instructions than this: Installing the Flocker Client.

I believe that page should simply say:

Prerequisites
  1. Install Docker or the container tooling of your choice
  2. An active internet connection
Installing
docker pull allingeek/flocker-cli:1.15.0-alpine
Running
docker run \
  -it --rm \
  -v "$(pwd)":/working -w /working \
  allingeek/flocker-cli:1.15.0-alpine \
  flocker-ca --help

or create a shell function to shortcut all that typing:

flocker-ca() {
  docker run \
    -it --rm \
    -v "$(pwd)":/working -w /working \
    allingeek/flocker-cli:1.15.0-alpine \
    flocker-ca $@
}

Tag summary

Content type

Image

Digest

Size

131.7 MB

Last updated

almost 10 years ago

docker pull allingeek/flocker-cli:1.15.0-alpine