The original post: /r/selfhosted by /u/Dungeon_Crawler_Carl on 2025-02-22 07:21:22.

Can someone help me install sablier on my Raspberry Pi using docker compose?

The directions on getting started page seems like it involves installing Caddy but I already have Caddy installed and running.

On the installation page it has this docker run:

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

which I formatted into

services:
    sablier:
        ports:
            - 10000:10000
        volumes:
            - $PWD/sablier.yml:/etc/sablier/sablier.yml
        image: sablierapp/sablier:1.8.5

Is this docker compose as well as the sablier.yaml config file all I need?