Dozzle

Docker container logs directly in your browser

Presentation

Dozzle is a simple web app which allows us to view our container logs directly in the browser without connecting into ssh on the server and then on the container.

Official video presentation

Docker Compose Installation

Dozzle doesn't need storage on your device, it doesn't store any data and container access are realized only when you click on the desired container in the app. Therefore the docker compose file is really simple.

In my case, I added a docker-socket-proxy to the installation to increase security, because Dozzle only needs read-only on containers and not more.

As I'm using a reverse proxy, the container is not mapped to any host port but is member of my proxy docker network instead. If you want to map a port, please remove all occurrences of proxyadmin network in the compose file and add to dozzle-app :

ports:

- <host_port>:8080

Last updated