├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── bocker ├── test └── tests ├── teardown ├── test_commit ├── test_exec ├── test_images ├── test_init ├── test_ps ├── test_pull ├── test_rm └── test_run /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bocker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/bocker -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/test -------------------------------------------------------------------------------- /tests/teardown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/teardown -------------------------------------------------------------------------------- /tests/test_commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_commit -------------------------------------------------------------------------------- /tests/test_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_exec -------------------------------------------------------------------------------- /tests/test_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_images -------------------------------------------------------------------------------- /tests/test_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_init -------------------------------------------------------------------------------- /tests/test_ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_ps -------------------------------------------------------------------------------- /tests/test_pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_pull -------------------------------------------------------------------------------- /tests/test_rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_rm -------------------------------------------------------------------------------- /tests/test_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p8952/bocker/HEAD/tests/test_run --------------------------------------------------------------------------------