Replies: 3 comments 2 replies
-
moved to discussions
|
Beta Was this translation helpful? Give feedback.
1 reply
-
I fixed it! It has to do with a change in browserless.
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Thank you for your sample, i iwas able to get mine working for the first time after 2 days trying to find out what was wrong version: "3.8"
services:
changedetection:
image: ghcr.io/dgtlmoon/changedetection.io:latest
container_name: changedetection
hostname: changedetection
volumes:
- changedetection-data:/datastore
environment:
- PORT=5000
- PUID=1000
- PGID=1000
- PLAYWRIGHT_DRIVER_URL=ws://playwright-chrome:3000/chrome?launch={"headless":false}
ports:
- 5000:5000
restart: unless-stopped
depends_on:
- playwright-chrome
networks:
- app-network
playwright-chrome:
hostname: playwright-chrome
image: ghcr.io/browserless/chrome
restart: unless-stopped
expose:
- "3000"
environment:
- SCREEN_WIDTH=1920
- SCREEN_HEIGHT=1024
- SCREEN_DEPTH=16
- ENABLE_DEBUGGER=false
- TIMEOUT=600000
- CONCURRENT=15
networks:
- app-network
volumes:
changedetection-data: null
networks:
app-network:
driver: bridge |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After updating my Docker images to the latest version for browserless and changedetection, my setup has stopped functioning. I am seeking guidance on how to resolve this issue. Can someone point me in the right direction? I do not entirely understand how an update could have lead to my issue.
Logs
Browserless:
Change Detection:
Docker Compose Configuration
Steps to Reproduce
Expected Behavior
The services should function normally, with changedetection able to connect to the playwright-chrome service without errors.
Actual Behavior
The changedetection service logs indicate a WebSocket error (404 Not Found) when checking websites for differences.
Any insights or suggestions would be greatly appreciated. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions