2025-06-05 16:24:43 -04:00
|
|
|
# 🚀 Quick Start Install
|
|
|
|
|
|
|
|
Install **AdventureLog** in seconds using our automated script.
|
|
|
|
|
|
|
|
## 🧪 One-Liner Install
|
|
|
|
|
|
|
|
```bash
|
|
|
|
curl -sSL https://get.adventurelog.app | bash
|
|
|
|
```
|
|
|
|
|
|
|
|
This will:
|
|
|
|
|
|
|
|
- Check dependencies (Docker, Docker Compose)
|
|
|
|
- Set up project directory
|
|
|
|
- Download required files
|
|
|
|
- Prompt for basic configuration (like domain name)
|
|
|
|
- Start AdventureLog with Docker Compose
|
|
|
|
|
|
|
|
## ✅ Requirements
|
|
|
|
|
|
|
|
- Docker + Docker Compose
|
|
|
|
- Linux server or VPS
|
|
|
|
- Optional: Domain name for HTTPS
|
|
|
|
|
|
|
|
## 🔍 What It Does
|
|
|
|
|
|
|
|
The script automatically:
|
|
|
|
|
|
|
|
1. Verifies Docker is installed and running
|
|
|
|
2. Downloads `docker-compose.yml` and `.env`
|
|
|
|
3. Prompts you for domain and port settings
|
2025-06-05 23:29:39 -04:00
|
|
|
4. Waits for services to start
|
|
|
|
5. Prints success info with next steps
|
2025-06-05 16:24:43 -04:00
|
|
|
|
|
|
|
## 🧼 Uninstall
|
|
|
|
|
|
|
|
To remove everything:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cd adventurelog
|
|
|
|
docker compose down -v
|
|
|
|
rm -rf adventurelog
|
|
|
|
```
|
|
|
|
|
2025-06-05 16:40:37 -04:00
|
|
|
Need more control? Explore other [install options](getting_started.md) like Docker, Proxmox, Synology NAS, and more.
|