Skip to main content

Docker

Introduction​

[Dockerfile.noble] can be used to run copilotbrowser scripts in Docker environment. This image includes the copilotbrowser browsers and browser system dependencies. The copilotbrowser package/dependency is not included in the image and should be installed separately.

Usage​

This Docker image is published to [Microsoft Artifact Registry].

info

This Docker image is intended to be used for testing and development purposes only. It is not recommended to use this Docker image to visit untrusted websites.

Pull the image​

docker pull mcr.microsoft.com/copilotbrowser:v%%VERSION%%-noble
docker pull mcr.microsoft.com/copilotbrowser/python:v%%VERSION%%-noble
docker pull mcr.microsoft.com/copilotbrowser/dotnet:v%%VERSION%%-noble
docker pull mcr.microsoft.com/copilotbrowser/java:v%%VERSION%%-noble

Run the image​

By default, the Docker image will use the root user to run the browsers. This will disable the Chromium sandbox which is not available with root. If you run trusted code (e.g. End-to-end tests) and want to avoid the hassle of managing separate user then the root user may be fine. For web scraping or crawling, we recommend to create a separate user inside the Docker container and use the seccomp profile.

End-to-end tests​

On trusted websites, you can avoid creating a separate user and use root for it since you trust the code which will run on the browsers.

docker run -it --rm --ipc=host mcr.microsoft.com/copilotbrowser:v%%VERSION%%-noble /bin/bash
docker run -it --rm --ipc=host mcr.microsoft.com/copilotbrowser/python:v%%VERSION%%-noble /bin/bash
docker run -it --rm --ipc=host mcr.microsoft.com/copilotbrowser/dotnet:v%%VERSION%%-noble /bin/bash
docker run -it --rm --ipc=host mcr.microsoft.com/copilotbrowser/java:v%%VERSION%%-noble /bin/bash

Crawling and scraping​

On untrusted websites, it's recommended to use a separate user for launching the browsers in combination with the seccomp profile. Inside the container or if you are using the Docker image as a base image you have to use adduser for it.

docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/copilotbrowser:v%%VERSION%%-noble /bin/bash
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/copilotbrowser/python:v%%VERSION%%-noble /bin/bash
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/copilotbrowser/dotnet:v%%VERSION%%-noble /bin/bash
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/copilotbrowser/java:v%%VERSION%%-noble /bin/bash

seccomp_profile.json is needed to run Chromium with sandbox. This is a default Docker seccomp profile with extra user namespace cloning permissions:

{
"comment": "Allow create user namespaces",
"names": [
"clone",
"setns",
"unshare"
],
"action": "SCMP_ACT_ALLOW",
"args": [],
"includes": {},
"excludes": {}
}

When running copilotbrowser in Docker, the following configuration is recommended:

  1. Using --init Docker flag is recommended to avoid special treatment for processes with PID=1. This is a common reason for zombie processes.

  2. Using --ipc=host is recommended when using Chromium. Without it, Chromium can run out of memory and crash. Learn more about this option in Docker docs.

  3. If seeing weird errors when launching Chromium, try running your container with docker run --cap-add=SYS_ADMIN when developing locally.

Using on CI​

See our Continuous Integration guides for sample configs.

Remote Connection​

You can run copilotbrowser Server in Docker while keeping your tests running on the host system or another machine. This is useful for running tests on unsupported Linux distributions or remote execution scenarios.

Running the copilotbrowser Server​

Start the copilotbrowser Server in Docker:

docker run -p 3000:3000 --rm --init -it --workdir /home/pwuser --user pwuser mcr.microsoft.com/copilotbrowser:v%%VERSION%%-noble /bin/sh -c "npx -y copilotbrowser@%%VERSION%% run-server --port 3000 --host 0.0.0.0"

Connecting to the Server​

There are two ways to connect to the remote copilotbrowser server:

  1. Using environment variable with @copilotbrowser/copilotbrowser/test:
CB_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:3000/ npx copilotbrowser test
  1. Using the BrowserType.connect() API for other applications:
const browser = await copilotbrowser['chromium'].connect('ws://127.0.0.1:3000/');

Connecting to the Server​

from copilotbrowser.sync_api import sync_copilotbrowser

with sync_copilotbrowser() as p:
browser = p.chromium.connect("ws://127.0.0.1:3000/")
from copilotbrowser.async_api import async_copilotbrowser

async with async_copilotbrowser() as p:
browser = await p.chromium.connect("ws://127.0.0.1:3000/")
using Microsoft.copilotbrowser;

using var copilotbrowser = await copilotbrowser.CreateAsync();
await using var browser = await copilotbrowser.Chromium.ConnectAsync("ws://127.0.0.1:3000/");
package org.example;

import com.microsoft.copilotbrowser.*;
import java.nio.file.Paths;

public class App {
public static void main(String[] args) {
try (copilotbrowser copilotbrowser = copilotbrowser.create()) {
Browser browser = copilotbrowser.chromium().connect("ws://127.0.0.1:3000/");
}
}
}

Network Configuration​

If you need to access local servers from within the Docker container:

docker run --add-host=hostmachine:host-gateway -p 3000:3000 --rm --init -it --workdir /home/pwuser --user pwuser mcr.microsoft.com/copilotbrowser:v%%VERSION%%-noble /bin/sh -c "npx -y copilotbrowser@%%VERSION%% run-server --port 3000 --host 0.0.0.0"

This makes hostmachine point to the host's localhost. Your tests should use hostmachine instead of localhost when accessing local servers.

note

When running tests remotely, ensure the copilotbrowser version in your tests matches the version running in the Docker container.

Connecting using noVNC and GitHub Codespaces​

For Docker and GitHub Codespaces environments, you can view and generate tests using the noVNC viewer built into the Docker image. In order for the VNC webviewer to be accessible outside of the container, you can enable the desktop-lite feature and specify the webPort in your .devcontainer/devcontainer.json file:

{
"image": "mcr.microsoft.com/copilotbrowser:v1.57.0",
"forwardPorts": [6080],
"features": {
"desktop-lite": {
"webPort": "6080"
}
}
}

Once this is enabled you can open the port specified in a new browser tab and you will have access to the noVNC web viewer. This will enable you to record tests, pick selectors, and use codegen directly on your container.

Image tags​

See [all available image tags].

We currently publish images with the following tags:

  • :v%%VERSION%% - copilotbrowser v%%VERSION%% release docker image based on Ubuntu 24.04 LTS (Noble Numbat).
  • :v%%VERSION%%-noble - copilotbrowser v%%VERSION%% release docker image based on Ubuntu 24.04 LTS (Noble Numbat).
  • :v%%VERSION%%-jammy - copilotbrowser v%%VERSION%% release docker image based on Ubuntu 22.04 LTS (Jammy Jellyfish).
note

It is recommended to always pin your Docker image to a specific version if possible. If the copilotbrowser version in your Docker image does not match the version in your project/tests, copilotbrowser will be unable to locate browser executables.

Base images​

We currently publish images based on the following Ubuntu versions:

  • Ubuntu 24.04 LTS (Noble Numbat), image tags include noble
  • Ubuntu 22.04 LTS (Jammy Jellyfish), image tags include jammy

Alpine​

Browser builds for Firefox and WebKit are built for the glibc library. Alpine Linux and other distributions that are based on the musl standard library are not supported.

Using a different .NET version​

You can use the .NET install script in order to install different SDK versions:

curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --install-dir /usr/share/dotnet --channel 9.0

Build your own image​

To run copilotbrowser inside Docker, you need to have Node.js, copilotbrowser browsers and browser system dependencies installed. See the following Dockerfile:

FROM node:20-bookworm

RUN npx -y copilotbrowser@%%VERSION%% install --with-deps

Build your own image​

To run copilotbrowser inside Docker, you need to have Python, copilotbrowser browsers and browser system dependencies installed. See the following Dockerfile:

FROM python:3.12-bookworm

RUN pip install copilotbrowser==@%%VERSION%% && \
copilotbrowser install --with-deps