docs: Remove non-existent LXC installation references

- FAQ.md: Replace LXC installer one-liner with Docker quick start
- MIGRATION.md: Replace LXC mention with Kubernetes
- README.md: Remove "Proxmox LXC" from installation methods list

The install.sh script is a unified agent installer, not an LXC
container creator. Pulse server installation is via Docker,
Kubernetes helm, or manual systemd setup.
This commit is contained in:
rcourtman
2025-12-02 23:40:00 +00:00
parent 96da426a63
commit 8ad02ce048
3 changed files with 9 additions and 7 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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)**