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:
- Docker Hub: sablierapp/sablier
- GitHub Container Registry: ghcr.io/sablierapp/sablier
With Docker Compose, copy this into a compose.yaml and run docker compose up -d:
services:
sablier:
image: sablierapp/sablier:1.15.0
command:
- start
- --provider.name=docker
ports:
- "10000:10000"
volumes:
- /var/run/docker.sock:/var/run/docker.sockWith docker run, using a sample sablier.yaml:
docker run -d -p 10000:10000 \
-v $PWD/sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.15.0The docker.sock mount is what lets Sablier start and stop your Docker containers.