Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 788 Bytes

DOCKER.md

File metadata and controls

47 lines (32 loc) · 788 Bytes

Docker for streamlit_prophet

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 := streamlit_prophet. Default version is VERSION := latest.

make docker IMAGE=some_name VERSION=0.1.0

Usage

docker run -it --rm \
   -v $(pwd):/workspace \
   streamlit_prophet 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