Skip to content
Install Sablier

Install Sablier

Sablier ships as a Docker image, a Helm chart for Kubernetes, a prebuilt binary, or you can build it from source.

Pull the image from Docker Hub or the GitHub Container Registry:

With Docker Compose, copy this into a compose.yaml and run docker compose up -d:

services:
  sablier:
    image: sablierapp/sablier:next
    command:
      - start
      - --provider.name=docker
    ports:
      - "10000:10000"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

With docker run, using a sample sablier.yaml:

docker run -d -p 10000:10000 \
    -v $PWD/sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:next

The docker.sock mount is what lets Sablier start and stop your Docker containers.