This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
notebook: | |
build: | |
context: ./jupyter-notebook-docker | |
ports: | |
- "8888:8888" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM jupyter/scipy-notebook | |
RUN conda install --quiet --yes \ | |
'mlflow=1.0.0' \ | |
'psycopg2' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
notebook: | |
build: | |
context: ./jupyter-notebook-docker | |
ports: | |
- "8888:8888" | |
depends_on: | |
- mlflow | |
environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
notebook: | |
build: | |
context: ./jupyter-notebook-docker | |
ports: | |
- "8888:8888" | |
depends_on: | |
- mlflow | |
environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7.0 | |
RUN pip install mlflow==1.0.0 | |
RUN mkdir /mlflow/ | |
CMD mlflow server \ | |
--backend-store-uri /mlflow \ | |
--host 0.0.0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7.0 | |
RUN pip install mlflow==1.0.0 | |
RUN pip install psycopg2 | |
RUN mkdir /mlflow/ | |
CMD mlflow server \ | |
--backend-store-uri postgresql://admin:secret@postgres:5432/mlflow \ | |
--default-artifact-root /mlflow \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM postgres:alpine | |
COPY init.sql /docker-entrypoint-initdb.d/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE mlflow; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer