-
Describe the bug
Version To Reproduce Both containers are on the same network and should see each other. Expected behavior Screenshots
Desktop (please complete the following information):
Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Ah there is something wrong in the wiki there, the two containers are running from the command line, but they are not on the same docker network please use docker-compose method, that should work |
Beta Was this translation helpful? Give feedback.
-
My working version: '2'
services:
changedetection.io:
image: ghcr.io/dgtlmoon/changedetection.io
container_name: changedetection.io
hostname: changedetection.io
volumes:
- ./changedetection-data:/datastore
environment:
- PORT=5000
- WEBDRIVER_URL=http://browser-chrome:4444/wd/hub
- BASE_URL=https://mydomain.com # Change to your own domain!
ports:
- '5000:5000'
restart: unless-stopped
browser-chrome:
hostname: browser-chrome
image: selenium/standalone-chrome-debug:3.141.59
environment:
- VNC_NO_PASSWORD=1
- SCREEN_WIDTH=1920
- SCREEN_HEIGHT=1080
- SCREEN_DEPTH=24
volumes:
- /dev/shm:/dev/shm
restart: unless-stopped
volumes:
changedetection-data: |
Beta Was this translation helpful? Give feedback.
-
It's definitely good as is. The code block explaining the two separate containers via |
Beta Was this translation helpful? Give feedback.
-
After some changes it works for me with docker run commands:
|
Beta Was this translation helpful? Give feedback.
After some changes it works for me with docker run commands: