You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`docker compose up -d --build` includes `mohawk-desktop-gui` for one-click full-stack startup.
80
+
- If `DISPLAY` is not set, the desktop GUI service exits cleanly and backend APIs continue running.
81
+
-`launch.py` sets `MOHAWK_SKIP_DESKTOP_GUI=1` when orchestrating compose to avoid duplicate GUI instances, then launches host desktop GUI directly when supported.
82
+
83
+
Skip container desktop GUI explicitly:
84
+
85
+
```bash
86
+
MOHAWK_SKIP_DESKTOP_GUI=1 docker compose up -d --build
Copy file name to clipboardExpand all lines: QUICKSTART.md
+49-1Lines changed: 49 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,17 @@ Mohawk is a production-grade AI inference engine with:
15
15
16
16
---
17
17
18
-
## Quick Start (Docker)
18
+
## Quick Start Paths
19
+
20
+
### A) One-Click Launcher
21
+
22
+
```bash
23
+
./launch.sh
24
+
```
25
+
26
+
Use menu option 1 (Docker stack) or option 2 (Native host processes). The launcher now attempts to auto-open the desktop GUI when the runtime supports display output.
27
+
28
+
### B) Docker Full Stack
19
29
20
30
### 1. Start All Services
21
31
@@ -27,6 +37,12 @@ docker compose up -d
27
37
docker ps
28
38
```
29
39
40
+
Optional: skip container desktop GUI service when running from raw compose.
41
+
42
+
```bash
43
+
MOHAWK_SKIP_DESKTOP_GUI=1 docker compose up -d --build
0 commit comments