Abstract


Fly.io CLi Cheatsheet


Fly CLi Setup
brew install flyctl
 
fly auth login
App Management
fly apps list
 
fly ssh console -a <APP_NAME>
 
fly image update -a <APP_NAME> # Updates the app's image to the latest available version.
fly image update -a umami-self-host --image <IMAGE_ENDPOINT> # Full flexibility in the image we want to use
App Secrets Management
fly secrets list -a <APP_NAME>
 
fly secrets set <KEY>=<Value> -a <APP_NAME>
App Networking Management
fly ips list
 
fly certs add <CUSTOM_DOMAIN_ENDPOINT>
fly certs show <CUSTOM_DOMAIN_ENDPOINT>
Postgres Management
fly postgres list
 
fly postgres connect -a <APP_NAME>