Downloads
Corso is available as a Docker container image or as native binaries.
Native binaries
Corso is available as an x86_64
and arm64
executable for Windows, Linux and macOS. These can be downloaded from
the GitHub releases page.
- Windows (Powershell)
- Linux - arm64
- Linux - x86_64
- macOS - arm64
- macOS - x86_64
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest `
-Uri https://github.com/alcionai/corso/releases/download/v0.19.0/corso_v0.19.0_Windows_x86_64.zip `
-UseBasicParsing -Outfile corso_v0.19.0_Windows_x86_64.zip
Expand-Archive .\corso_v0.19.0_Windows_x86_64.zip
curl -L -O https://github.com/alcionai/corso/releases/download/v0.19.0/corso_v0.19.0_Linux_arm64.tar.gz && \
tar zxvf corso_v0.19.0_Linux_arm64.tar.gz
curl -L -O https://github.com/alcionai/corso/releases/download/v0.19.0/corso_v0.19.0_Linux_x86_64.tar.gz && \
tar zxvf corso_v0.19.0_Linux_x86_64.tar.gz
curl -L -O https://github.com/alcionai/corso/releases/download/v0.19.0/corso_v0.19.0_Darwin_arm64.tar.gz && \
tar zxvf corso_v0.19.0_Darwin_arm64.tar.gz
curl -L -O https://github.com/alcionai/corso/releases/download/v0.19.0/corso_v0.19.0_Darwin_x86_64.tar.gz && \
tar zxvf corso_v0.19.0_Darwin_x86_64.tar.gz
Docker container images
Corso is also available as a Docker container image for Linux (x86_64
and arm64
). The image can also be used on
Linux, with Docker Desktop on macOS, and on Windows in
Linux Mode.
These Docker containers can be pulled from GitHub's container registry.
We strongly recommend using a container image with the release version tag (for example,
ghcr.io/alcionai/corso:v0.1.0
) but container images with the latest
tag are also available. Unreleased builds
with the nightly
tag are also provided for testing but these are likely to be unstable.
- Official Release
- Latest
- Nightly (Unstable)
docker pull ghcr.io/alcionai/corso:v0.19.0
docker pull ghcr.io/alcionai/corso:latest
docker pull ghcr.io/alcionai/corso:nightly