Prepare, configure, and manage Firecracker microVMs in seconds!
virtualization linux microvm firecracker

package for ubuntu/debian

+28
+8
README.md
··· 23 curl -sSL https://raw.githubusercontent.com/tsirysndr/fireup/main/install.sh | bash 24 ``` 25 26 ## Subcommands 27 - `up`: Starts the Firecracker microVM, preparing assets and configuring the network if needed. 28 - `down`: Stops the running Firecracker microVM.
··· 23 curl -sSL https://raw.githubusercontent.com/tsirysndr/fireup/main/install.sh | bash 24 ``` 25 26 + ### Ubuntu/Debian 27 + 28 + ``` 29 + echo "deb [trusted=yes] https://apt.fury.io/tsiry/ /" | sudo tee /etc/apt/sources.list.d/fury.list 30 + sudo apt-get update 31 + sudo apt-get install fireup 32 + ``` 33 + 34 ## Subcommands 35 - `up`: Starts the Firecracker microVM, preparing assets and configuring the network if needed. 36 - `down`: Stops the running Firecracker microVM.
+4
dist/debian/.gitignore
···
··· 1 + *.deb 2 + amd64/usr/* 3 + arm64/usr/* 4 +
+9
dist/debian/amd64/DEBIAN/control
···
··· 1 + Package: fireup 2 + Version: 0.1.0 3 + Section: utils 4 + Priority: optional 5 + Architecture: amd64 6 + Maintainer: Tsiry Sandratraina <tsiry.sndr@rocksky.app> 7 + Description: fireup is a tool designed to simplify the process of setting up and managing Firecracker microVMs. It automates the preparation of the necessary files, including kernel images, root filesystems, and SSH keys, to quickly get you started with Firecracker. 8 + 9 +
+7
dist/debian/arm64/DEBIAN/control
···
··· 1 + Package: fireup 2 + Version: 0.1.0 3 + Section: utils 4 + Priority: optional 5 + Architecture: arm64 6 + Maintainer: Tsiry Sandratraina <tsiry.sndr@rocksky.app> 7 + Description: fireup is a tool designed to simplify the process of setting up and managing Firecracker microVMs. It automates the preparation of the necessary files, including kernel images, root filesystems, and SSH keys, to quickly get you started with Firecracker.