Last active
February 4, 2020 15:30
-
-
Save al102964/dc3b2aad82c1ff62e85b60a5f1b8aee8 to your computer and use it in GitHub Desktop.
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: | |
mlflow: | |
build: ./mlflow-server | |
ports: | |
- "5000:5000" | |
depends_on: | |
- "ftpd" | |
- "postgres" | |
volumes: | |
- /usr/bin/docker:/usr/bin/docker | |
- /var/run/docker.sock:/var/run/docker.sock | |
ftpd: | |
image: "mauler/simple-ftp-server" | |
environment: | |
- FTP_USER=test | |
- FTP_PASS=test | |
ports: | |
- "21:21" | |
postgres: | |
build: ./postgres-mlflow | |
ports: | |
- "5432:5432" | |
jupyter: | |
environment: | |
- JUPYTER_ENABLE_LAB=yes | |
build: ./jupyter-mlflow | |
ports: | |
- "8888:8888" | |
portainer: | |
image: "portainer/portainer:1.23.0" | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
ports: | |
- "9000:9000" | |
- "8000:8000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment