mailcow-dockerized-docs/docs/troubleshooting/debug-logs.en.md

40 Zeilen
1,1 KiB
Markdown

!!! warning
This section only applies for Dockers default logging driver (JSON).
2023-01-13 18:16:08 +01:00
To view the logs of all mailcow: dockerized related containers, you can use the following command inside your mailcow-dockerized folder that contains your `mailcow.conf`.
2023-01-13 18:16:08 +01:00
=== "docker compose (Plugin)"
``` bash
docker compose logs
```
=== "docker-compose (Standalone)"
``` bash
docker-compose logs
```
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 the following:
=== "docker compose (Plugin)"
``` bash
docker compose logs [options] $service_name
```
=== "docker-compose (Standalone)"
``` bash
docker-compose logs [options] $service_name
```
!!! info
2023-01-13 18:16:08 +01:00
The available options for the previous commands 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.