Install Browser Use Web UI via Docker
mainUse Docker to run the Web UI and VNC viewer. Ensure Docker and Docker Compose are installed.
Clone the repository:
git clone https://github.com/browser-use/web-ui.git cd web-uiConfigure environment: Create a
.envfile from the example:- Windows (Command Prompt):
copy .env.example .env - macOS/Linux/Windows (PowerShell):
cp .env.example .envAdd your API keys to the.envfile.
- Windows (Command Prompt):
Build and run: For standard systems:
docker compose up --buildFor ARM64 systems (e.g., Apple Silicon Macs):
TARGETPLATFORM=linux/arm64 docker compose up --buildAccess services:
- Web-UI:
http://localhost:7788 - VNC Viewer:
http://localhost:6080/vnc.html(Default password:youvncpassword. Change this viaVNC_PASSWORDin.env).
- Web-UI:
docker compose up --build