github_tests_validator_app/docker at main · artefactory/github_tests_validator_app · GitHub
Skip to content

Latest commit

 

History

History

Folders and files

README.md

Docker for github_tests_validator_app

Installation

To create Docker you need to run:

make docker

which is equivalent to:

make docker VERSION=latest

You could also provide name and version for the image itself. Default name is IMAGE := github_tests_validator_app. Default version is VERSION := latest.

make docker IMAGE=some_name VERSION=0.1.0

Usage

docker run -it --rm \
   -v $(pwd):/workspace \
   github_tests_validator_app bash

How to clean up

To uninstall docker image run make clean_docker with VERSION:

make clean_docker VERSION=0.1.0

like in installation, you can also choose the image name

make clean_docker IMAGE=some_name VERSION=latest

If you want to clean all, including build run make clean