Advertisement
islander2013

docker-compose.yml

Mar 6th, 2025
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.91 KB | None | 0 0
  1. version: '3.8'
  2. services:
  3.   changedetection:
  4.     image: ghcr.io/dgtlmoon/changedetection.io
  5.     container_name: changedetection
  6.     hostname: changedetection
  7.     volumes:
  8.      - changedetection-data:/datastore
  9.     environment:
  10.      - PORT=5000
  11.       - PUID=1000
  12.       - PGID=1000
  13.       - WEBDRIVER_URL=http://browser-chrome:4444/wd/hub
  14.       - PLAYWRIGHT_DRIVER_URL=ws://playwright-chrome:3000
  15.       - BASE_URL=https://192.168.1.191
  16.     ports:
  17.      - 5000:5000
  18.     restart: unless-stopped
  19.     depends_on:
  20.       playwright-chrome:
  21.         condition: service_started
  22.  
  23.   playwright-chrome:
  24.     hostname: playwright-chrome
  25.     image: dgtlmoon/sockpuppetbrowser:latest
  26.     #image: browserless/chrome:latest
  27.     restart: unless-stopped
  28.     environment:
  29.      - SCREEN_WIDTH=1920
  30.       - SCREEN_HEIGHT=1024
  31.       - SCREEN_DEPTH=16
  32.       - MAX_CONCURRENT_CHROME_PROCESSES=10
  33.  
  34. volumes:
  35.  changedetection-data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement