docs: remove all Coolify references from codebase

Replace Coolify with Docker Compose throughout documentation.
The project never used Coolify - a removal script was created but
never executed, leaving incorrect documentation.

Changes:
- Delete 13 heavily Coolify-focused docs files
- Update ~30 files replacing Coolify → Docker Compose
- Remove obsolete removal script
- Fix deployment references in active and archived projects

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Wuesteon 2025-12-10 01:56:38 +01:00
parent 79b4bb07ed
commit c61dcb8ff9
42 changed files with 176 additions and 4741 deletions

View file

@ -99,30 +99,46 @@
apt update && apt upgrade -y
```
### Step 3: Set up Docker Compose (10 minutes)
### Step 3: Set up Docker & Docker Compose (10 minutes)
1. On your server (via SSH), run:
1. On your server (via SSH), install Docker:
```bash
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
# Install Docker
curl -fsSL https://get.docker.com | bash
# Add your user to docker group
usermod -aG docker $USER
# Install Docker Compose plugin
apt-get update && apt-get install -y docker-compose-plugin
# Verify installation
docker --version
docker compose version
```
2. Wait 5-10 minutes for installation to complete
- The script will install Docker, Coolify, and dependencies
- You'll see progress messages
2. Set up the deployment directory:
3. Once complete, access Docker Compose configuration:
```
https://YOUR_SERVER_IP:8000
```bash
mkdir -p /opt/manacore
cd /opt/manacore
```
4. Complete initial setup wizard:
- Create admin account
- Set email (for SSL certificates)
- Configure basic settings
3. Clone your repository or copy docker-compose files:
5. Save your Coolify credentials securely!
```bash
git clone https://github.com/wuesteon/manacore-monorepo.git
cd manacore-monorepo
```
4. Configure environment variables:
```bash
cp .env.example .env
# Edit .env with your production values
nano .env
```
### Step 4: Configure GitHub Secrets (5 minutes)