最近新发现一个容器平台fly.io 账号的注册流程比较新奇(最起码我是第一次这样注册.
分享一下注册流程和可以做的事
Fly.io简介
Fly is a platform for applications that need to run globally. It runs your code close to users and scales compute in cities where your app is busiest. Write your code, package it into a Docker image, deploy it to Fly’s platform and let that do all the work to keep your app snappy.
Fly.io文档地址:https://fly.io/docs/
注册流程
参考官方安装文档:https://fly.io/docs/hands-on/installing/
1.win+s搜索PowerShell并打开,输入以下命令:
iwr https://fly.io/install.ps1 | iex
如下图则安装成功.C:\Users\DELL就是安装的目录
如果出现以下错误:
iwr : The response content cannot be parsed because the Internet Explorer engine is not available, or Internet Explorer's first-launch configuration is not complete. Specify the UseBasicParsing parameter and try again.
运行:
iwr https://fly.io/install.ps1 -useBasicParsing | iex
2.注册账号
还是在PowerShell里,输入flyctl auth signup
,然后浏览器会打开一个注册界面.可以用邮箱或者GitHub注册
3.登陆账号
运行:flyctl auth login
创建和部署APP
参考官方文档:
暂无评论内容