I don’t know if some people already know about this, but for those who don’t, this container is worth discovering! It’s a container that shows in real time the logs of other containers, very handy for debugging or following the execution of certain commands. It’s lightweight, 4 MB in RAM, and it can start, stop, and restart containers!
A tutorial to install it here
The GitHub link
The docs are here
The docker-compose is here, however there is an error in the line: DOZZLE_ENABLE_ACTIONS: true
you must put
DOZZLE_ENABLE_ACTIONS: « true »
version: "3"
services:
dozzle:
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8080:8080
environment:
DOZZLE_ENABLE_ACTIONS: "true"
@pierre-gilles, this could be interesting to integrate this container into Gladys like Node-RED or zigbee2mqtt, what do you think?



