mailcow-dockerized-docs/docs/troubleshooting/debug-logs.en.md
Niklas Meyer 5c1c263e46 Revert "Compose v2"
This reverts commit 423f24f6f2.
2022-06-01 15:39:27 +02:00

821 B

!!! warning This section only applies for Dockers default logging driver (JSON).

To view the logs of all mailcow: dockerized related containers, you can use docker-compose logs inside your mailcow-dockerized folder that contains your mailcow.conf. This is usually a bit much, but you could trim the output with --tail=100 to the last 100 lines per container, or add a -f to follow the live output of all your services.

To view the logs of a specific service you can use docker-compose logs [options] $service_name

!!! info The available options for the command docker-compose logs are:

- **--no-color**: Produce monochrome output.
- **-f**: Follow the log output.
- **-t**: Show timestamps.
- **--tail="all"**: Number of lines to show from the end of the logs for each container.