Workflow update

main
technorabilia 2 months ago
parent b9edb8c565
commit 808361be7c

@ -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

@ -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 \

Loading…
Cancel
Save