Skip to content

Installation

You can install and run Kache in the following ways:

Use the Official Docker Image

Use one of the official Docker images and run it with the sample configuration file:

docker run -d -p 8080:8080 -p 80:80 \
    -v $PWD/kache.yml:/etc/kache/kache.yml \
    kache:latest -config.file=/etc/kache/kache.yml 

Use the binary distribution

To run kache, get the latest binary from the releases page and run it with the sample configuration file:

./kache -config.file=kache.yml

Build binary from source

git clone https://github.com/kacheio/kache

Use the Helm Chart

Info

Comming soon!

Quick Start

If you want to run kache with a distributed caching backend (e.g. Redis), you can use and run this example docker-compose as a starting point:

docker-compose -f deploy/docker-compose.yml up 

Tip

Check the Quick Starts for Docker and Kubernetes to learn more.