This repository provides a Docker setup for running browser-use inside a container. The container provides VNC access for debugging.
Create docker-compose.yml file:
services:
browser-use:
image: vovan/browser-use
container_name: browser-use
environment:
- OPENAI_API_KEY=xxxxxxxx
ports:
- '5900:5900'
Run the container:
docker compose up
Access the container shell to manually run scripts inside the container:
docker compose exec browser-use bash
Run browser-use inside the container:
python gpt-demo.py
Use any VNC client and connect to:
localhost:5900
Password: secret
To stop the running container:
docker compose down
Content type
Image
Digest
sha256:3a3511c0e…
Size
1 GB
Last updated
over 1 year ago
docker pull vovan/browser-use