Description
Firecracker: start a VM in less than a second
Summary
- start a VM in less than a second Hello!
- It changes the gateway in the kernel boot args to the Docker bridge network interface’s IP (172.17.0.1) My guess is that most people probably won’t want to use the Docker bridge, if you just want the VM to be able to connect to the outside internet I think the best way is to create a new bridge.
- FROM ubuntu:20.04 RUN apt-get update RUN apt-get install -y init openssh-server RUN yes | unminimize # copy over some SSH keys and install other programs I wanted And here’s the basic shell script I’ve been using to create a filesystem image from the Docker container.
- I found the firectl code and the Go SDK pretty easy to understand so I won’t say too much more about it here.