diff --git a/docs/FAQ.md b/docs/FAQ.md index c3d3245ca..1cf0720e4 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -3,11 +3,13 @@ ## 🛠️ Installation & Setup ### What's the easiest way to install? -Run this one-liner on your Proxmox host: +Use Docker: ```bash -curl -fsSL https://github.com/rcourtman/Pulse/releases/latest/download/install.sh | bash +docker run -d --name pulse -p 7655:7655 -v pulse_data:/data rcourtman/pulse:latest ``` +See [INSTALL.md](INSTALL.md) for all options (Docker Compose, Kubernetes, systemd). + ### How do I add a node? **Auto-discovery (Recommended)**: Go to **Settings → Nodes**, find your node in the "Discovered" list, click "Setup Script", and run the provided command on your Proxmox host. **Manual**: Go to **Settings → Nodes → Add Node** and enter the credentials manually. diff --git a/docs/MIGRATION.md b/docs/MIGRATION.md index e74103842..6c18922fe 100644 --- a/docs/MIGRATION.md +++ b/docs/MIGRATION.md @@ -35,11 +35,11 @@ Never copy `/etc/pulse` or `/var/lib/pulse` manually. Encryption keys and creden ### Moving to New Hardware Export from old → Install new → Import. -### Docker ↔ Systemd ↔ LXC -The export file works across all installation methods. You can migrate from Docker to LXC or vice versa seamlessly. +### Docker ↔ Systemd ↔ Kubernetes +The export file works across all installation methods. You can migrate from Docker to Kubernetes or vice versa seamlessly. ### Disaster Recovery -1. Install Pulse: `curl -sL https://github.com/rcourtman/Pulse/releases/latest/download/install.sh | bash` +1. Install Pulse using Docker or your preferred method (see [INSTALL.md](INSTALL.md)). 2. Import your latest backup. 3. Restored in < 5 minutes. diff --git a/docs/README.md b/docs/README.md index 545a8b4c6..24b71c113 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,8 +6,8 @@ Welcome to the Pulse documentation portal. Here you'll find everything you need ## 🚀 Getting Started -- **[Installation Guide](INSTALL.md)** - Step-by-step guides for Proxmox LXC, Docker, Kubernetes, and bare metal. +- **[Installation Guide](INSTALL.md)** + Step-by-step guides for Docker, Kubernetes, and bare metal. - **[Configuration](CONFIGURATION.md)** Learn how to configure authentication, notifications (Email, Discord, etc.), and system settings. - **[Migration Guide](MIGRATION.md)**