Pular para o conteúdo principal

GrantID - Checking the system logs on Docker

The Docker image for GrantID sends its logs to the standard output, which in turn gets registered by Docker as service logs. To check the grantid service logs:

docker service logs grantid_grantid -f
observação

On the commands shown on this article, the leftmost grantid is the name of the stack, while the rightmost part is the name of the service (in the case above, the grantid service). If you deployed your stack with another name, say patorumid, you would need to replace the leftmost grantid on the commands shown here with the name of your stack (e.g. patorumid_grantid).

You can also check the SQL Server logs:

docker service logs grantid_sql -f

And also the Nginx logs:

docker service logs grantid_nginx -f

See also