Skip to content

ths83/colima-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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