Skip to content
Open
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
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,27 @@ When a customer requests a human:
- Freshdesk web portal
- WhatsApp (collected details → adapter)

## Quick Start
## Getting Started

**Prerequisites:** Docker Engine and Docker Compose must be installed and running.

```bash
# 1. Verify Docker is active (required)
docker info >/dev/null 2>&1 || echo "Docker daemon is not running"
docker compose version
```

```bash
# 1. Clone
# 2. Clone the repository
git clone https://github.com/OneByJorah/CommandDesk.git
cd CommandDesk

# 3. Start the platform
docker compose up -d --build

# 4. Verify services
docker compose ps
```
# 2. Run setup
./scripts/setup.sh

Expand Down
6 changes: 6 additions & 0 deletions deploy_log.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[CommandDesk deploy attempt]
1. docker compose config -> FAILED (extra top-level keys in docker-compose.yml)
2. Applied fix: moved tools-ui, whatsapp-webhook, health-monitor under services.
3. docker compose config -> OK
4. docker compose build -> FAILED: "Cannot connect to the Docker daemon at unix:///var/run/docker.sock"
Root cause: Docker daemon is not running on this host (system policy: Docker stopped/masked).
Loading