Skip to content

Instantly share code, notes, and snippets.

@deeperunderstanding
Last active June 18, 2019 17:55
Show Gist options
  • Save deeperunderstanding/d09877003837b842a50d31b4799916d6 to your computer and use it in GitHub Desktop.
Save deeperunderstanding/d09877003837b842a50d31b4799916d6 to your computer and use it in GitHub Desktop.
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:
MLFLOW_TRACKING_URI: 'http://mlflow:5000'
mlflow:
build:
context: ./ml-flow-docker
expose:
- "5000"
ports:
- "5000:5000"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment