mirror of
https://github.com/linuxserver/docker-changedetection.io.git
synced 2026-03-09 00:09:49 +08:00
70 lines
2.8 KiB
YAML
70 lines
2.8 KiB
YAML
---
|
|
|
|
# project information
|
|
project_name: changedetection.io
|
|
project_url: "https://github.com/dgtlmoon/changedetection.io"
|
|
project_logo: "https://github.com/linuxserver/docker-templates/raw/master/linuxserver.io/img/changedetection-icon.png"
|
|
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) provides free, open-source web page monitoring, notification and change detection."
|
|
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
|
|
|
|
# supported architectures
|
|
available_architectures:
|
|
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
|
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
|
|
|
# development version
|
|
development_versions: false
|
|
|
|
# container parameters
|
|
common_param_env_vars_enabled: true
|
|
param_container_name: "{{ project_name }}"
|
|
param_usage_include_vols: true
|
|
param_volumes:
|
|
- { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Contains all relevant configuration files." }
|
|
|
|
param_usage_include_ports: true
|
|
param_ports:
|
|
- { external_port: "5000", internal_port: "5000", port_desc: "WebUI" }
|
|
param_usage_include_env: true
|
|
param_env_vars:
|
|
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London"}
|
|
|
|
# optional container parameters
|
|
opt_param_usage_include_env: true
|
|
opt_param_env_vars:
|
|
- { env_var: "BASE_URL", env_value: "", desc: "Specify the full URL (including protocol) when running behind a reverse proxy" }
|
|
|
|
custom_compose: |
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
changedetection:
|
|
image: lscr.io/linuxserver/changedetection.io:latest
|
|
container_name: changedetection
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/London
|
|
- BASE_URL= #optional
|
|
volumes:
|
|
- /path/to/appdata/config:/config
|
|
ports:
|
|
- 5000:5000
|
|
restart: unless-stopped
|
|
# application setup block
|
|
app_setup_block_enabled: true
|
|
app_setup_block: |
|
|
Webui is accessible at http://SERVERIP:PORT
|
|
|
|
Please note that this image does not contain the [Playwright content fetcher](https://github.com/dgtlmoon/changedetection.io/wiki/Playwright-content-fetcher#docker-compose-based) due to a lack of support for muslc-based systems. If you require this feature please use [Selenium](https://github.com/linuxserver/docker-changedetection.io/issues/3#issuecomment-1250251715) or the [official container](https://github.com/dgtlmoon/changedetection.io#docker)
|
|
|
|
For more info read [the wiki](https://github.com/dgtlmoon/changedetection.io/wiki).
|
|
|
|
# changelog
|
|
changelogs:
|
|
- { date: "11.06.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
|
|
- { date: "05.03.23:", desc: "Rebase to Alpine 3.17." }
|
|
- { date: "23.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
|
|
- { date: "09.10.22:", desc: "Add make as build dep to fix pip jq build on armhf." }
|
|
- { date: "07.08.22:", desc: "Initial release." }
|