Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #version: '3.2'
- services:
- changedetection:
- image: ghcr.io/dgtlmoon/changedetection.io
- container_name: changedetection
- hostname: changedetection
- volumes:
- - changedetection-data:/datastore
- environment:
- - PORT= 5000
- - PUID= 1000
- - PGID= 1000
- - WEBDRIVER_URL=http://browser-chrome:4444/wd/hub
- #- PLAYWRIGHT_DRIVER_URL=ws://playwright-chrome:3000/?stealth=1&--disable-web-security=true
- #- PLAYWRIGHT_DRIVER_URL=ws://playwright-chrome:3000
- - PLAYWRIGHT_DRIVER_URL=ws://sockpuppetbrowser:3000
- - BASE_URL=https://192.168.1.191
- ports:
- - 5000:5000
- restart: unless-stopped
- depends_on:
- playwright-chrome:
- condition: service_started
- # browser-chrome:
- # hostname: browser-chrome
- # image: seleniarm/standalone-chromium:4.0.0-20211213
- # volumes:
- # Workaround to avoid the browser crashing inside a docker container
- # See https://github.com/SeleniumHQ/docker-selenium#quick-start
- # - /dev/shm:/dev/shm
- # restart: unless-stopped
- playwright-chrome:
- hostname: playwright-chrome
- #image: browserless/chrome
- image: dgtlmoon/sockpuppetbrowser:latest
- #cap_add:
- #- SYS_ADMIN
- restart: unless-stopped
- platform: linux/arm64
- environment:
- - SCREEN_WIDTH=1920
- - SCREEN_HEIGHT=1024
- - SCREEN_DEPTH=16
- - MAX_CONCURRENT_CHROME_PROCESSES=10
- volumes:
- changedetection-data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement