├── .dockerignore ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── config ├── buildroot ├── busybox ├── kernel └── user └── rootfs ├── etc ├── default │ └── docker ├── group ├── init.d │ ├── S03hostname │ ├── S04automount │ ├── S05sysctl │ ├── S52dlitesvc │ ├── S53docker │ ├── S60crond │ └── S61usermount ├── profile.d │ └── dhyve.sh ├── sudoers.d │ └── docker ├── sysctl.conf └── version ├── usr ├── bin │ └── .keep └── sbin │ └── dlitesvc └── var └── spool └── cron └── crontabs └── root /.dockerignore: -------------------------------------------------------------------------------- 1 | ccache 2 | output 3 | dl 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/README.md -------------------------------------------------------------------------------- /config/buildroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/config/buildroot -------------------------------------------------------------------------------- /config/busybox: -------------------------------------------------------------------------------- 1 | CONFIG_BASE64=y 2 | -------------------------------------------------------------------------------- /config/kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/config/kernel -------------------------------------------------------------------------------- /config/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/config/user -------------------------------------------------------------------------------- /rootfs/etc/default/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/default/docker -------------------------------------------------------------------------------- /rootfs/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/group -------------------------------------------------------------------------------- /rootfs/etc/init.d/S03hostname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S03hostname -------------------------------------------------------------------------------- /rootfs/etc/init.d/S04automount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S04automount -------------------------------------------------------------------------------- /rootfs/etc/init.d/S05sysctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S05sysctl -------------------------------------------------------------------------------- /rootfs/etc/init.d/S52dlitesvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S52dlitesvc -------------------------------------------------------------------------------- /rootfs/etc/init.d/S53docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S53docker -------------------------------------------------------------------------------- /rootfs/etc/init.d/S60crond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S60crond -------------------------------------------------------------------------------- /rootfs/etc/init.d/S61usermount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/init.d/S61usermount -------------------------------------------------------------------------------- /rootfs/etc/profile.d/dhyve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/profile.d/dhyve.sh -------------------------------------------------------------------------------- /rootfs/etc/sudoers.d/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/sudoers.d/docker -------------------------------------------------------------------------------- /rootfs/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/etc/sysctl.conf -------------------------------------------------------------------------------- /rootfs/etc/version: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /rootfs/usr/bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rootfs/usr/sbin/dlitesvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/usr/sbin/dlitesvc -------------------------------------------------------------------------------- /rootfs/var/spool/cron/crontabs/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlf/dhyve-os/HEAD/rootfs/var/spool/cron/crontabs/root --------------------------------------------------------------------------------