Sign inSign up

vovan/browser-use

By vovan

Updated over 1 year ago

Run browser-use in Docker

Image
4

6.8K

vovan/browser-use repository overview

Docker Image for running browser-use

This repository provides a Docker setup for running browser-use inside a container. The container provides VNC access for debugging.

Prerequisites

Using

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

Connect via VNC

Use any VNC client and connect to:

localhost:5900

Password: secret

Stopping the Container

To stop the running container:

docker compose down

Source

https://github.com/vovanmozg/browser-use-docker

Tag summary

Content type

Image

Digest

sha256:3a3511c0e

Size

1 GB

Last updated

over 1 year ago

docker pull vovan/browser-use