From a5933966dd737ce4cefd6602b74518f08f033dcf Mon Sep 17 00:00:00 2001 From: Ein Verne Date: Mon, 27 Jun 2022 18:21:01 +0800 Subject: [PATCH] flyctl: add page (#8144) --- pages/common/flyctl.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/flyctl.md diff --git a/pages/common/flyctl.md b/pages/common/flyctl.md new file mode 100644 index 000000000..e24f1eed4 --- /dev/null +++ b/pages/common/flyctl.md @@ -0,0 +1,36 @@ +# flyctl + +> Command-line tool for flyctl.io. +> More information: . + +- Sign into a Fly account: + +`flyctl auth login` + +- Launch an application from a specific Dockerfile (the default path is the current working directory): + +`flyctl launch --dockerfile {{path/to/dockerfile}}` + +- Open the current deployed application in the default web browser: + +`flyctl open` + +- Deploy the Fly applications from a specific Dockerfile: + +`flyctl deploy --dockerfile {{path/to/dockerfile}}` + +- Open the Fly Web UI for the current application in a web browser: + +`flyctl dashboard` + +- List all applications in the logged-in Fly account: + +`flyctl apps list` + +- View the status of a specific running application: + +`flyctl status --app {{app_name}}` + +- Show version information: + +`flyctl version`