From ff2bbd0ca3f277a5d0e7ccc6edb2bf3c7ffd600d Mon Sep 17 00:00:00 2001 From: Junv Zhao Date: Thu, 4 Jul 2019 23:35:17 +1000 Subject: [PATCH] add jupyter --- ds/docker-compose.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ds/docker-compose.yaml diff --git a/ds/docker-compose.yaml b/ds/docker-compose.yaml new file mode 100644 index 0000000..1786b7e --- /dev/null +++ b/ds/docker-compose.yaml @@ -0,0 +1,12 @@ +version: "3.5" +services: + jupyter: + tty: true + restart: unless-stopped + # volumes: + # - /mnt/jupyter-data:/home/jovyan/work + ports: + - 18888:8888 + image: jupyter/tensorflow-notebook:latest + environment: + - JUPYTER_ENABLE_LAB=yes