From 808361be7cc90e775354cb24f256a504e170845c Mon Sep 17 00:00:00 2001 From: technorabilia Date: Mon, 11 Mar 2024 00:34:16 +0000 Subject: [PATCH] Workflow update --- lsio/changedetection.io/docker-compose.yaml | 8 ++++---- lsio/changedetection.io/docker-run.sh | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lsio/changedetection.io/docker-compose.yaml b/lsio/changedetection.io/docker-compose.yaml index f7fb92d..f464e24 100644 --- a/lsio/changedetection.io/docker-compose.yaml +++ b/lsio/changedetection.io/docker-compose.yaml @@ -2,18 +2,18 @@ # free, open-source web page monitoring, notification and change detection. --- -version: "2.1" services: - changedetection: + changedetection.io: image: lscr.io/linuxserver/changedetection.io:latest container_name: changedetection environment: - PUID=1000 - PGID=1000 - - TZ=Europe/London + - TZ=Etc/UTC - BASE_URL= #optional + - PLAYWRIGHT_DRIVER_URL= #optional volumes: - - /path/to/appdata/config:/config + - /path/to/changedetection/config:/config ports: - 5000:5000 restart: unless-stopped diff --git a/lsio/changedetection.io/docker-run.sh b/lsio/changedetection.io/docker-run.sh index f89a88b..0eddc48 100644 --- a/lsio/changedetection.io/docker-run.sh +++ b/lsio/changedetection.io/docker-run.sh @@ -8,6 +8,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -e BASE_URL= `# optional` `# Specify the full URL (including protocol) when running behind a reverse proxy` \ + -e PLAYWRIGHT_DRIVER_URL= `# optional` `# Specify the full URL to your chrome driver instance. See the [wiki](https://github.com/dgtlmoon/changedetection.io/wiki/Playwright-content-fetcher) for details.` \ -p 5000:5000 `# WebUI` \ -v ${BASEDIR:-/volume1/docker}/changedetection.io/config:/config `# Persistent config files` \ --restart unless-stopped \