Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
flyctl Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# flyctl
> Command-line tool for flyctl.io.
> More information: <https://github.com/superfly/flyctl>.
- 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}}`
- Display version information:
`flyctl version`