From a22416584dc903816efd16e37aeffd98a8888cf0 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 27 Aug 2025 09:25:51 +0200 Subject: [PATCH 1/3] README: --privileged is not needed anymore --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c3ecc9e..702994c0 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,8 @@ Lightpanda provides [official Docker images](https://hub.docker.com/r/lightpanda/browser) for both Linux amd64 and arm64 architectures. The following command fetches the Docker image and starts a new container exposing Lightpanda's CDP server on port `9222`. -The `--privileged` option is required because the browser requires `io_uring` syscalls which are blocked by default by Docker. ```console -docker run -d --name lightpanda -p 9222:9222 --privileged lightpanda/browser:nightly +docker run -d --name lightpanda -p 9222:9222 lightpanda/browser:nightly ``` ### Dump a URL From fa408e644c395a377d3514c78d5105e918d6760d Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 27 Aug 2025 09:26:10 +0200 Subject: [PATCH 2/3] cs fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 702994c0..d6f39bfc 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Due to the nature of Playwright, a script that works with the current version of ## Quick start -### Install +### Install **Install from the nightly builds** You can download the last binary from the [nightly @@ -155,7 +155,7 @@ Here are the key features we have implemented: - [x] Cookies - [x] Custom HTTP headers - [ ] Proxy support -- [ ] Network interception +- [ ] Network interception NOTE: There are hundreds of Web APIs. Developing a browser (even just for headless mode) is a huge task. Coverage will increase over time. From d0e2a03da5a5d4db8a6bbe8182398e651ecf1678 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 27 Aug 2025 09:30:43 +0200 Subject: [PATCH 3/3] README: proxy support is ready --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6f39bfc..cf770870 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ Here are the key features we have implemented: - [x] Input form - [x] Cookies - [x] Custom HTTP headers -- [ ] Proxy support +- [x] Proxy support - [ ] Network interception NOTE: There are hundreds of Web APIs. Developing a browser (even just for headless mode) is a huge task. Coverage will increase over time.