Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

v0.5.2

Compare
Choose a tag to compare
@luxas luxas released this 26 Aug 14:42
be96924

This is the second patch release in the v0.5.X series, containing one bug fix needed for integrating well with Footloose.

Bug Fixes

  • Fix Docker client port mappings by actually exposing them after binding (#350, @twelho)

Trying it out / Next Steps!

In short:

export VERSION=v0.5.2
export GOARCH=$(go env GOARCH 2>/dev/null || echo "amd64")

for binary in ignite ignited; do
    echo "Installing ${binary}..."
    curl -sfLo ${binary} https://github.com/weaveworks/ignite/releases/download/${VERSION}/${binary}-${GOARCH}
    chmod +x ${binary}
    sudo mv ${binary} /usr/local/bin
done

A more throughout installation guide is available here: https://ignite.readthedocs.io/en/latest/installation.html