Skip to main content

Logs

Logs preview

Each docker container has a log file. You can view the logs of each container by running the following command in your terminal:

ContainerLog file
Frontneddocker logs -f docker-frontent-1
Backenddocker logs -f docker-backend-1
Zigbee2MQTTdocker logs -f docker-zigbee2mqtt-1
mosquittodocker logs -f docker-mosquitto-1
postgresqldocker logs -f docker-postgres-1
info

The -f flag will follow the log file and print new lines as they are added. You can remove the -f flag to view the log file without following it.