A Laravel-based server for GoExport video rendering with headless display support.
docker compose up --build -dAccess the application at: http://localhost:8080
docker compose -f docker-compose.dev.yml up --buildWhen running with docker-compose.dev.yml, you can view the virtual displays:
This is where GoExport renders content. Use this to debug rendering issues.
| Access Method | URL/Port |
|---|---|
| VNC Client | localhost:5999 |
| Web Browser (noVNC) | http://localhost:6099/vnc.html |
A full desktop environment for debugging, running browsers manually, etc.
| Access Method | URL/Port |
|---|---|
| VNC Client | localhost:5901 |
| Web Browser (noVNC) | http://localhost:6080/vnc.html |
| Variable | Default | Description |
|---|---|---|
ENABLE_VNC_DISPLAY99 |
false |
Enable VNC viewer for :99 (GoExport display) |
ENABLE_VNC_DESKTOP |
false |
Enable full desktop on :1 |
ENABLE_NOVNC |
false |
Enable web-based VNC clients |
| Variable | Default | Description |
|---|---|---|
DISPLAY |
:99 |
X display number for GoExport |
DISPLAY_WIDTH |
1920 |
Display width in pixels |
DISPLAY_HEIGHT |
1080 |
Display height in pixels |
| File | Purpose |
|---|---|
docker-compose.yml |
Production - VNC disabled, minimal ports exposed |
docker-compose.dev.yml |
Development - All VNC features enabled, source mounted |
| Port | Service | Available In |
|---|---|---|
| 8080 | HTTP (Nginx) | Both |
| 5901 | VNC - Display :1 (Desktop) | Dev only |
| 5999 | VNC - Display :99 (GoExport) | Dev only |
| 6080 | noVNC - Display :1 | Dev only |
| 6099 | noVNC - Display :99 | Dev only |
| 3306 | MySQL | Dev only |
| 6379 | Redis | Dev only |
- Run with dev compose:
docker compose -f docker-compose.dev.yml up --build - Open http://localhost:6099/vnc.html in your browser
- You'll see the actual display :99 where GoExport renders
# All supervisor logs
docker exec goexport-server tail -f /var/log/supervisor/*.log
# Specific service
docker exec goexport-server tail -f /var/log/supervisor/xorg.log
docker exec goexport-server tail -f /var/log/supervisor/x11vnc-display99.log