├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── configs └── vm.sh ├── kernel ├── x64 │ └── kernel.sh └── x86 │ └── kernel.sh └── scripts └── vm.sh /.gitignore: -------------------------------------------------------------------------------- 1 | #* 2 | *~ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jencryzthers/VboxInsideDocker/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jencryzthers/VboxInsideDocker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jencryzthers/VboxInsideDocker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jencryzthers/VboxInsideDocker/HEAD/README.md -------------------------------------------------------------------------------- /configs/vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jencryzthers/VboxInsideDocker/HEAD/configs/vm.sh -------------------------------------------------------------------------------- /kernel/x64/kernel.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernel/x86/kernel.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jencryzthers/VboxInsideDocker/HEAD/scripts/vm.sh --------------------------------------------------------------------------------