Use the flocker-ca command without all of the installation hassle and portability issues.
365
Container ecosystem companies should have better installation instructions than this: Installing the Flocker Client.
I believe that page should simply say:
docker pull allingeek/flocker-cli:1.15.0-alpine
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 $@
}
Content type
Image
Digest
Size
131.7 MB
Last updated
almost 10 years ago
docker pull allingeek/flocker-cli:1.15.0-alpine