Player for Browser docker run -d \ --name browser-chrome \ --restart always \ --security-opt seccomp=unconfined \ dgtlmoon/sockpuppetbrowser:latest Changedetecion Container docker run -d \ --name changedetection.io \ --restart always \ -p "5000:5000" \ -v datastore-volume:/datastore \ -e PLAYWRIGHT_DRIVER_URL=ws://browser-chrome:3000 \ --link browser-chrome \ dgtlmoon/changedetection.io docker start changedetection.io docker stop changedetection.io -------------------------------------------------------------------- services: portainer: container_name: portainer image: portainer/portainer-ce:sts restart: always volumes: - /var/run/docker.sock:/var/run/docker.sock - portainer_data:/data ports: - 9443:9443 - 8000:8000 # Remove if you do not intend to use Edge Agents volumes: portainer_data: name: portainer_data networks: default: name: portainer_network into "portainer-compose.yaml" then "docker compose -f portainer-compose.yaml up -d" --------------------------------------------------------------------