From 4e0e960b6feb904a8a8730c67d65f37d256637be Mon Sep 17 00:00:00 2001 From: Harikrishnan Dhanasekaran Date: Sun, 5 Oct 2025 10:02:34 +0530 Subject: [PATCH] =?UTF-8?q?fix(browserless):=20update=20image=20to=20lates?= =?UTF-8?q?t=20and=20fix=20configuration=20issues=20=20-=20Update=20Docker?= =?UTF-8?q?=20image=20from=20v2.23.0=20to=20latest=20for=20better=20compat?= =?UTF-8?q?ibility=20-=20Fix=20typo=20in=20environment=20variable=20name?= =?UTF-8?q?=20(BROWERLESS=5FHOST=20=E2=86=92=20BROWSERLESS=5FHOST)=20-=20S?= =?UTF-8?q?tandardize=20port=20format=20(3=5F000=20=E2=86=92=203000)=20for?= =?UTF-8?q?=20consistency=20(#420)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blueprints/browserless/docker-compose.yml | 2 +- blueprints/browserless/template.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/blueprints/browserless/docker-compose.yml b/blueprints/browserless/docker-compose.yml index 11d6d95f..351b2813 100644 --- a/blueprints/browserless/docker-compose.yml +++ b/blueprints/browserless/docker-compose.yml @@ -1,6 +1,6 @@ services: browserless: - image: ghcr.io/browserless/chromium:v2.23.0 + image: ghcr.io/browserless/chromium:latest environment: TOKEN: ${BROWSERLESS_TOKEN} expose: diff --git a/blueprints/browserless/template.toml b/blueprints/browserless/template.toml index e1714af9..d251ddb5 100644 --- a/blueprints/browserless/template.toml +++ b/blueprints/browserless/template.toml @@ -4,12 +4,12 @@ browserless_token = "${password:16}" [config] env = [ - "BROWERLESS_HOST=${main_domain}", + "BROWSERLESS_HOST=${main_domain}", "BROWSERLESS_TOKEN=${browserless_token}", ] mounts = [] [[config.domains]] serviceName = "browserless" -port = 3_000 +port = 3000 host = "${main_domain}"