├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── GNUmakefile ├── LICENSE ├── README.md ├── add-ssh-key.sh ├── bsd.sh ├── docker-entrypoint.sh ├── generate-tags.py ├── logo.png ├── pxeboot_ia32_com0.bin ├── scripts ├── configure-system.netbsd ├── system-setup.post.netbsd └── system-setup.pre.netbsd └── tests ├── 001_test_foreground.bats ├── 002_test_background.bats ├── 003_test_ssh.bats ├── 004_test_memory.bats └── 005_test_interactive.bats /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.built-* 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/Dockerfile -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/README.md -------------------------------------------------------------------------------- /add-ssh-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/add-ssh-key.sh -------------------------------------------------------------------------------- /bsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/bsd.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /generate-tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/generate-tags.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/logo.png -------------------------------------------------------------------------------- /pxeboot_ia32_com0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/pxeboot_ia32_com0.bin -------------------------------------------------------------------------------- /scripts/configure-system.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/scripts/configure-system.netbsd -------------------------------------------------------------------------------- /scripts/system-setup.post.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/scripts/system-setup.post.netbsd -------------------------------------------------------------------------------- /scripts/system-setup.pre.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/scripts/system-setup.pre.netbsd -------------------------------------------------------------------------------- /tests/001_test_foreground.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/tests/001_test_foreground.bats -------------------------------------------------------------------------------- /tests/002_test_background.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/tests/002_test_background.bats -------------------------------------------------------------------------------- /tests/003_test_ssh.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/tests/003_test_ssh.bats -------------------------------------------------------------------------------- /tests/004_test_memory.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/tests/004_test_memory.bats -------------------------------------------------------------------------------- /tests/005_test_interactive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madworx/docker-netbsd/HEAD/tests/005_test_interactive.bats --------------------------------------------------------------------------------