Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 477 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 477 Bytes

Colima testing scripts

Testing scripts for Kumojin's blog.

Running tests

Using bind mount volume

docker run -v $(pwd)/:/test/ --workdir /test alpine sh test.sh host

Using Docker volume

docker volume create test_volume
docker build -t colima_test .
docker run -v test_volume:/test/ --workdir /test colima_test test.sh volume

Using a container

docker build -t colima_test .
docker run colima_test test.sh container