├── .dockerignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── FAQ.md ├── LICENSE ├── README.md ├── files ├── bootsync.sh ├── docker-compose.yml ├── forgiving-getty ├── init.d │ ├── autoformat │ ├── docker │ └── vbox ├── isolinux.cfg ├── kernel-config.d │ ├── .check-dups.sh │ ├── boot2docker │ ├── ceph │ ├── cifs │ ├── docker │ ├── ebpf │ ├── hyperv │ ├── kvm │ ├── networking │ ├── rancher │ ├── rng │ ├── tinycorelinux │ ├── usb-serial │ ├── virtualbox │ └── vmware ├── make-b2d-iso.sh ├── shutdown ├── tce-load.patch └── udhcpc.patch └── update.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iso 2 | *.qcow2 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/README.md -------------------------------------------------------------------------------- /files/bootsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/bootsync.sh -------------------------------------------------------------------------------- /files/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/docker-compose.yml -------------------------------------------------------------------------------- /files/forgiving-getty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/forgiving-getty -------------------------------------------------------------------------------- /files/init.d/autoformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/init.d/autoformat -------------------------------------------------------------------------------- /files/init.d/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/init.d/docker -------------------------------------------------------------------------------- /files/init.d/vbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/init.d/vbox -------------------------------------------------------------------------------- /files/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/isolinux.cfg -------------------------------------------------------------------------------- /files/kernel-config.d/.check-dups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/.check-dups.sh -------------------------------------------------------------------------------- /files/kernel-config.d/boot2docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/boot2docker -------------------------------------------------------------------------------- /files/kernel-config.d/ceph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/ceph -------------------------------------------------------------------------------- /files/kernel-config.d/cifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/cifs -------------------------------------------------------------------------------- /files/kernel-config.d/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/docker -------------------------------------------------------------------------------- /files/kernel-config.d/ebpf: -------------------------------------------------------------------------------- 1 | CONFIG_BPF_SYSCALL=y 2 | -------------------------------------------------------------------------------- /files/kernel-config.d/hyperv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/hyperv -------------------------------------------------------------------------------- /files/kernel-config.d/kvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/kvm -------------------------------------------------------------------------------- /files/kernel-config.d/networking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/networking -------------------------------------------------------------------------------- /files/kernel-config.d/rancher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/rancher -------------------------------------------------------------------------------- /files/kernel-config.d/rng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/rng -------------------------------------------------------------------------------- /files/kernel-config.d/tinycorelinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/tinycorelinux -------------------------------------------------------------------------------- /files/kernel-config.d/usb-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/usb-serial -------------------------------------------------------------------------------- /files/kernel-config.d/virtualbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/virtualbox -------------------------------------------------------------------------------- /files/kernel-config.d/vmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/kernel-config.d/vmware -------------------------------------------------------------------------------- /files/make-b2d-iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/make-b2d-iso.sh -------------------------------------------------------------------------------- /files/shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/shutdown -------------------------------------------------------------------------------- /files/tce-load.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/tce-load.patch -------------------------------------------------------------------------------- /files/udhcpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/files/udhcpc.patch -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebridge/homebridge-vm-image-boot2docker/HEAD/update.sh --------------------------------------------------------------------------------