File size: 827 Bytes
93948e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
version: '3'
services:
# download data
physionet:
build: "./containers/physionet"
container_name: physionet
env_file:
- .env
volumes:
- ./volumes/physionet:/opt/physionet
# etl
etl:
build: "./containers/etl"
container_name: etl
env_file:
- .env
volumes:
- ./volumes/physionet:/opt/physionet
# interactive notebooks
jupyter:
build: "./containers/jupyter"
container_name: jupyter
volumes:
- ./volumes/notebooks:/opt/notebooks
- ./volumes/physionet:/opt/physionet
- ./volumes/models:/opt/models
ports:
- "8888:8888"
# interactive application
streamlit:
build: "./containers/streamlit"
container_name: streamlit
ports:
- "8501:8501"
volumes:
- ./volumes/models:/opt/models
|