Accessing Logs using Docker

The main logfile for each service is configured to write to STDOUT in the docker images.

This log can be accessed by executing:

docker-compose logs [servicename]

Gentics CMS specific logfiles

Gentics CMS uses different logfiles for specific tasks.

Please find more info in the Gentics CMS guides about logfiles.

To reach for example the file /Node/tomcat/logs/gentics.log you may run

docker-compose exec cms less /Node/tomcat/logs/gentics.log

Usage hints

See the logs starting from right now:

docker-compose logs --follow --tail=0 [servicename]