35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
version: '2'
|
|
services:
|
|
changedetection.io:
|
|
image: dgtlmoon/changedetection.io
|
|
container_name: changedetection.io
|
|
hostname: changedetection.io
|
|
volumes:
|
|
- changedetection-data:/datastore
|
|
# environment:
|
|
# Default listening port, can also be changed with the -p option
|
|
# - PORT=5000
|
|
|
|
# - PUID=1000
|
|
# - PGID=1000
|
|
# Proxy support example.
|
|
# - HTTP_PROXY="socks5h://10.10.1.10:1080"
|
|
# - HTTPS_PROXY="socks5h://10.10.1.10:1080"
|
|
# An exclude list (useful for notification URLs above) can be specified by with
|
|
# - NO_PROXY="localhost,192.168.0.0/24"
|
|
# Base URL of your changedetection.io install (Added to the notification alert)
|
|
# - BASE_URL="https://mysite.com"
|
|
|
|
# Respect proxy_pass type settings, `proxy_set_header Host "localhost";` and `proxy_set_header X-Forwarded-Prefix /app;`
|
|
# More here https://github.com/dgtlmoon/changedetection.io/wiki/Running-changedetection.io-behind-a-reverse-proxy-sub-directory
|
|
# - USE_X_SETTINGS=1
|
|
|
|
# Comment out ports: when using behind a reverse proxy , enable networks: etc.
|
|
ports:
|
|
- 5000:5000
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
changedetection-data:
|
|
|