You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
957 B
Bash

# [Changedetection.io](https://github.com/dgtlmoon/changedetection.io) provides
# free, open-source web page monitoring, notification and change detection.
. ./.env
docker run -d \
--name=changedetection.io \
-e PUID=${PUID:-1024} `# for UserID` \
-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 \
ghcr.io/linuxserver/changedetection.io