From c25418170002c15ac259bbce700ebee463f5ff14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Tue, 6 Dec 2022 16:48:01 +0100 Subject: [PATCH] changedetection: remove selenium, fix port --- changedetection.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/changedetection.yml b/changedetection.yml index 51f7365..ef6aa8a 100644 --- a/changedetection.yml +++ b/changedetection.yml @@ -5,31 +5,25 @@ image: dgtlmoon/changedetection.io container_name: changedetection depends_on: - # - chrome - browserless user: ${PUID}:${PGID} environment: - TZ=${TZ} - BASE_URL=changes.kucharczyk.xyz - # - WEBDRIVER_URL="http://selenium:4444/wd/hub" - - PLAYWRIGHT_DRIVER_URL="ws://browserless:3100/?stealth=1&--disable-web-security=true" + - PLAYWRIGHT_DRIVER_URL="ws://browserless:3000/?stealth=1&--disable-web-security=true" volumes: - "${DOCKER_STORAGE_PATH}/changedetection/data:/datastore" ports: - "${CHANGEDETECTION_EXTERNAL_PORT}:${CHANGEDETECTION_INTERNAL_PORT}" restart: unless-stopped - # chrome: - # image: selenium/standalone-chrome-debug:3.141.59 - # container_name: selenium - # ports: - # - "4444:4444" - # shm_size: '2g' browserless: image: browserless/chrome:1.53-chrome-stable + container_name: browserless shm_size: '2g' environment: - DEFAULT_LAUNCH_ARGS=[\"--window-size=1920,1080\"] ports: - "3100:3000" + restart: unless-stopped \ No newline at end of file