What is the proper command to restart a Dokku app from SSH? What is the proper command to restart a Dokku app from SSH? docker docker

What is the proper command to restart a Dokku app from SSH?


dokku ps:restart <app> works for me logged in with dokku system user.

Use dokku apps to list your apps.


If you just want restart the web app, run dokku deploy myapp


Found it there! You have to use Docker restart command directly.

Connect to your server by SSH and run:

docker restart `cat /home/dokku/myapp/CONTAINER`

myapp being the name of my application. Change the path to your app if needed.