Workflow update

main
technorabilia 2 years ago
parent c46ee0a5fa
commit 1e12eafb62

@ -0,0 +1,25 @@
# [Changedetection.io](https://github.com/dgtlmoon/changedetection.io) provides
# free, open-source web page monitoring, notification and change detection.
---
version: "2.1"
services:
changedetection.io:
image: ghcr.io/linuxserver/changedetection.io
container_name: changedetection.io
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
# Specify the full URL (including protocol) when running behind a reverse proxy
- BASE_URL= # optional
volumes:
# Contains all relevant configuration files.
- ${BASEDIR:-/volume1/docker}/changedetection.io/config:/config
ports:
# WebUI
- 5000:5000
restart: unless-stopped

@ -0,0 +1,14 @@
# [Changedetection.io](https://github.com/dgtlmoon/changedetection.io) provides
# free, open-source web page monitoring, notification and change detection.
source ./.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 for example Europe/Amsterdam` \
-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 `# Contains all relevant configuration files.` \
--restart unless-stopped \
ghcr.io/linuxserver/changedetection.io

@ -0,0 +1,3 @@
ln -s ../docker-env.cfg ./.env
. ./.env
mkdir -p ${BASEDIR:-/volume1/docker}/changedetection.io/config
Loading…
Cancel
Save