Debugging
To view the logs, we recommend using Dozzle, which is an open source tool. Dozzle enables you to view logs of each Docker container running in your system in a browser.
When a flow is running, nodes are launched and orchestrated in the spawner-robot1
container, and therefore this is likely the most interesting container to check.
To install Dozzle and run it –
docker run --name dozzle -d --volume=/var/run/docker.sock:/var/run/docker.sock -p 8888:8080 amir20/dozzle:latest
To start Dozzle each time you reboot –
docker start dozzle
To read the logs –
Open the browser at: http://localhost:8888/
.
Updated over 2 years ago