Nanobox是本地开发工具,可以消除环境的复杂性,在部署和生产环境之间,进行自动化环境配置,通过虚拟化使得开发环境更简洁。
Nanobox在轻量级VM中启动应用,使得本地保持与生产环境一样的配置。
主要特性:
应用源代码:专注于编码,而不需要过多关注配置一个本地开发环境。
语言引擎:此引擎可以检测你的应用类型和指定应用需要的服务,还有如何配置。
Docker容器:配置好和安装好的容器。
Vagrant/VirtualBox:服务在统一的轻量级Linux虚拟机(30mbRAM)中运行。
Nanobox检测你的应用类型,自动配置环境,安装应用所需的所有应用和服务:
使用Usage: nanobox [flags] nanobox [command]Available Commands: run Starts a nanobox, provisions the app, & runs the app's exec dev Starts the nanobox, provisions app, & opens an interactive terminal info Displays information about the nanobox and your app console Opens an interactive terminal from inside your app on nanobox destroy Destroys the nanobox stop Suspends the nanobox update Updates the CLI to the newest available version update-images Updates the nanobox docker images box Subcommands for managing the nanobox/boot2docker.box engine Subcommands to aid in developing a custom engineFlags: --background[=false]: Stops nanobox from auto-suspending. -f, --force[=false]: Forces a command to run (effects vary per command). -v, --verbose[=false]: Increase command output from 'info' to 'debug'. --version[=false]: Display the current version of this CLIAdditional help topics: nanobox productionUse "nanobox [command] --help" for more information about a command.
评论