Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dokku view logs? (hosted on digitalocean)

Tags:

dokku

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!

like image 891
yifanwu Avatar asked May 22 '14 19:05

yifanwu


People also ask

How do I check my digital ocean logs?

To view app resource logs, go to https://cloud.digitalocean.com/apps and click on your app. Click on the Runtime Logs tab, then click on a resource to view its logs. The logs show within a few minutes after the app deploys. The logs are updated in real-time while the resource is running.

What is dokku in Docker?

Dokku is a hosted Platform as a Service that enables developers to deploy their applications with ease. From their website: The smallest PaaS implementation you've ever seen. Dokku is based on Docker and uses Heroku's build-packs to compile and package your applications.


1 Answers

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

like image 143
François Avatar answered Sep 20 '22 08:09

François