mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
15 lines
749 B
Bash
15 lines
749 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` \
|
|
-p 5000:5000 `# WebUI` \
|
|
-v ${BASEDIR:-/volume1/docker}/changedetection.io/config:/config `# Persistent config files` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/changedetection.io
|