Skip to content

cfaessler/mlcon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro

To get everything setup very easily we have created a docker container that has all the libraries installed you need for the labs. The container also contains local jupyter notebook server, so you can run all the notebooks locally.

1) Build the container

$ docker build -t aikurs-container .

2) Run the container and open interactive bash

$ docker run -it --rm -v $(pwd):/app -p 8000:8000 -p 8888:8888 aikurs-container bash
  • pwd is your current working directory on the host machine
  • app is the path in the container where the host directory is mapped to

3) Run jupyter notebook server within container

$ jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --allow-root

4) Run uvicorn app within container

$ uvicorn main:app --host 0.0.0.0 --port 8000

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published