Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 1.14 KB

File metadata and controls

48 lines (29 loc) · 1.14 KB

Predict daily bike rental ridership using a neural network


Prerequisites

What things you need to install the software

docker 17+
docker-compose 1.19.0+


Installing

# Change the directory to the project folder
cd path-to-your-project-folder

# Create a .env file with your local project folder
echo "APP_FOLDER=/path-to-your-project-folder" > .env

# Build the project environment
sudo docker-compose -f docker/docker-compose.yaml build


Executing

# Run the project environment
sudo docker-compose -f docker/docker-compose.yaml up -d

# Execute the jupyter notebook server 
sudo docker exec -it JupiterNotebook jupyter notebook --notebook-dir=/usr/src/app/notebooks --ip='*' --port=8888 --no-browser --allow-root 


Authors