Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ Install curl if needed:

## Quick Start

**One-liner (curl):** When piped, the script runs non-interactively and uses defaults.
**Interactive install (curl):**
```bash
bash <(curl -fsSL https://raw.githubusercontent.com/n3-rd/multi-pb/main/install.sh)
```
Prompts for port, data dir, domain, etc.

**Non-interactive (piped, uses defaults):**
```bash
curl -fsSL https://raw.githubusercontent.com/n3-rd/multi-pb/main/install.sh | bash
```
Expand All @@ -57,11 +63,6 @@ With options (port, data dir, domain):
curl -fsSL https://raw.githubusercontent.com/n3-rd/multi-pb/main/install.sh | bash -s -- --non-interactive --port 25983 --data-dir ./multipb-data
```

Or interactive (will prompt for config):
```bash
curl -fsSL https://raw.githubusercontent.com/n3-rd/multi-pb/main/install.sh | bash -s --
```

**From clone:**
```bash
git clone https://github.com/n3-rd/multi-pb.git
Expand Down
Loading