Forrest logo
back to the dokku tool

dokku:tldr:e3d73

dokku: Create an app.
$ dokku apps:create ${app_name}
try on your machine

The command "dokku apps:create ${app_name}" is used to create a new application on a Dokku server. Here's a breakdown of the command:

  • "dokku" is the command-line interface (CLI) tool for interacting with the Dokku server.
  • "apps:create" is the specific command used to create a new application.
  • "${app_name}" is a placeholder for the desired name of the application. You need to replace it with the actual name of your application.

When you run this command, it will create a new application with the specified name on the Dokku server. This application will have its own infrastructure to deploy and serve your application code.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the dokku tool