fix(browserless): update image to latest and fix configuration issues - Update Docker image from v2.23.0 to latest for better compatibility - Fix typo in environment variable name (BROWERLESS_HOST → BROWSERLESS_HOST) - Standardize port format (3_000 → 3000) for consistency (#420)

This commit is contained in:
Harikrishnan Dhanasekaran
2025-10-04 22:32:34 -06:00
committed by GitHub
parent c6b0d0e203
commit 4e0e960b6f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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:
+2 -2
View File
@@ -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}"