diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a7dc46a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +version: "3.7" +services: + jupyter-lab: + build: . + init: true + image: realappsdev/tf:latest + ports: + - "8888:8888" + volumes: + - jupyter_lab_app:/opt/conda/share/jupyter/lab + - jupyter_lab_config:/root/.jupyter + - /data/jupyter-lab:/jupyter-lab + +volumes: + jupyter_lab_app: + external: true + jupyter_lab_config: + external: true