Skip to main content

Installation

Ory software runs on any operating system (FreeBSD, macOS, Linux, Windows, ...) and supports all major CPU platforms (ARM64, ARMv7, x86_64, x86, ...).

Install Ory Oathkeeper using homebrew on macOS:

brew install ory/tap/oathkeeper
oathkeeper help

Download Binaries

You can download the client and server binaries on our Github releases page. No installer is available. You have to add the binary to the PATH in your environment yourself, for example by putting it into /usr/local/bin or something comparable.

Once installed, you should be able to run:

oathkeeper help

Building from source

If you wish to compile the binary yourself, you need to install and set up Go 1.17+ and add $GOPATH/bin to your $PATH.

danger

Please note that this will check out the latest commit, which might be not yet released and unstable.

git clone https://github.com/ory/oathkeeper.git
cd oathkeeper
go mod download
go install -tags sqlite,json1,hsm .
$(go env GOPATH)/bin/oathkeeper help