Skip to content

Instantly share code, notes, and snippets.

View deeperunderstanding's full-sized avatar
Tinkering

A Deeper Understanding deeperunderstanding

Tinkering
View GitHub Profile
@deeperunderstanding
deeperunderstanding / docker-compose.yml
Last active June 18, 2019 17:55
The docker-compose now with mlflow tracking server added
version: '3'
services:
notebook:
build:
context: ./jupyter-notebook-docker
ports:
- "8888:8888"
depends_on:
- mlflow
environment:
@deeperunderstanding
deeperunderstanding / docker-compose.yml
Last active June 18, 2019 18:26
The final docker-compose file
version: '3'
services:
notebook:
build:
context: ./jupyter-notebook-docker
ports:
- "8888:8888"
depends_on:
- mlflow
environment:
@deeperunderstanding
deeperunderstanding / Dockerfile
Last active June 18, 2019 15:30
Final Dockerfile for MLFlow
FROM python:3.7.0
RUN pip install mlflow==1.0.0
RUN pip install psycopg2
EXPOSE 5000
RUN mkdir -p /server
WORKDIR /server
COPY . /server
@deeperunderstanding
deeperunderstanding / Dockerfile
Last active June 19, 2019 12:55
Jupyter Notebook Dockerfile
FROM jupyter/scipy-notebook
RUN conda install --quiet --yes \
'mlflow=1.0.0' \
'psycopg2'
version: '3'
services:
notebook:
build:
context: ./jupyter-notebook-docker
ports:
- "8888:8888"