1
0
Fork 0
docker-compose-templates/changedetection.yml

25 lines
737 B
YAML
Raw Normal View History

2022-12-06 12:24:16 +00:00
---
version: "2.1"
services:
2022-12-06 12:25:11 +00:00
changedetection:
2022-12-06 12:24:16 +00:00
image: dgtlmoon/changedetection.io
container_name: changedetection
2022-12-06 13:11:14 +00:00
depends_on:
- chrome
2022-12-06 12:24:16 +00:00
user: ${PUID}:${PGID}
environment:
- TZ=${TZ}
- BASE_URL=changes.kucharczyk.xyz
2022-12-06 13:11:14 +00:00
- WEBDRIVER_URL="http://selenium:4444/wd/hub"
2022-12-06 12:24:16 +00:00
volumes:
- "${DOCKER_STORAGE_PATH}/changedetection/data:/datastore"
ports:
- "${CHANGEDETECTION_EXTERNAL_PORT}:${CHANGEDETECTION_INTERNAL_PORT}"
restart: unless-stopped
2022-12-06 13:11:14 +00:00
chrome:
image: selenium/standalone-chrome-debug:3.141.59
container_name: selenium
ports:
- "4444:4444"
shm_size: '2g'
2022-12-06 12:24:16 +00:00