16 lines
357 B
YAML
16 lines
357 B
YAML
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:
|
|
- /srv/changedetection/config:/config
|
|
ports:
|
|
- 5000:5000
|
|
restart: unless-stopped
|