Podman

Run LinkBreeze with Podman as a Docker alternative.

Using Podman instead of Docker (RHEL, Fedora, CentOS)? LinkBreeze works identically — just replace docker with podman.

Run with Podman

podman run -d --name linkbreeze --restart unless-stopped -p 3000:3000 -v linkbreeze-data:/app/data ghcr.io/manak-hash/linkbreeze:latest

If you get permission errors on the volume, create it first:

podman volume create linkbreeze-data

Systemd Integration (Rootless)

For auto-start on boot with rootless Podman:

podman generate systemd --name linkbreeze > ~/.config/systemd/user/linkbreeze.service
systemctl --user enable linkbreeze.service
systemctl --user start linkbreeze.service

Enable lingering so the service runs even when you're not logged in:

loginctl enable-linger $USER

Podman Compose

If you prefer compose files, podman-compose works as a drop-in replacement:

podman-compose up -d

One-Line Install Script

The install script at the top of the Quickstart detects Podman automatically. If Podman is installed (and Docker isn't), it uses Podman to run the container.