Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 636 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 636 Bytes

DIY Permeameter

Launching the application

# Clone the repository
git clone [email protected]:cabrowne/DIYPermeameter.git

# Create a conda environment to install dependencies for the app
conda create --name DIYPermeameter python=3.8
conda activate DIYPermeameter

# Install app requirements
cd DIYPermeameter/
pip install -r requirements.txt

# Run the app
streamlit run app.py

Launching the application with Docker

# Pull the image
docker pull hydroframe/diypermeameter:latest

# Launch the image on port 80
# Dockerfile must be edited to use a different port
docker run -p 80:80 hydroframe/diypermeameter:latest