Dokku view logs? (hosted on digitalocean)

dokku

Solution

To get a continuous log you can type:

`dokku logs yourappname -t`

It acts as the tail -f command on linux and mac systems.

Dokku logs - docs

Problem

So I just started using dokku (with postegres). My app works on Heroku so I'm pretty sure it's a deployment issue. The app seems to be running but is however hitting issues at log in. I did dokku logs my_app_name however the logs seems to be old. On heroku whenever there is an issue there is an corresponding log, but here I cannot find. Any ideas are appreciated! Thanks!

Original source