Troubleshooting Docker
Debugging / Logging
- List the running service containers with
docker compose ps
. - You can see the logs with
docker compose logs -f <service>
(use-f
to follow the output). - For
php
andmessenger
services, the application log is also available atstorage/php_logs/
&storage/messenger_logs/
on the host.