Skip to content

Latest commit

 

History

History

docker

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Docker for fluentqa-pyutils

Installation

To create Docker you need to run:

make docker-build

which is equivalent to:

make docker-build VERSION=latest

You may provide name and version for the image. Default name is IMAGE := fluentqa_pyutils. Default version is VERSION := latest.

make docker-build IMAGE=some_name VERSION=0.1.0

Usage

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

How to clean up

To uninstall docker image run make docker-remove with VERSION:

make docker-remove VERSION=0.1.0

you may also choose the image name

make docker-remove IMAGE=some_name VERSION=latest

If you want to clean all, including build and pycache run make cleanup