From a9424b07e308e6b02156c5805d16dc5204ef08c3 Mon Sep 17 00:00:00 2001 From: Anton Kullberg <anton.kullberg@liu.se> Date: Wed, 15 Dec 2021 10:30:55 +0100 Subject: [PATCH] readme: added env. variable to docker run command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b3052c..41d5283 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,13 @@ docker build -t targettracking -f Dockerfile . #### Step 3 Run the Docker image ``` -docker run --rm -it -p 8888:8888 targettracking +docker run --rm -it -p 8888:8888 -e JUPYTER_LAB_ENABLE=yes targettracking ``` This opens up a Jupyter lab instance on port 8888 which you can open in any browser. ### Alternative 2: Pull Docker image from Container Registry Run the Docker image (with notebooks) by running ``` -docker run --rm -it -p 8888:8888 gitlab.liu.se:5000/phd-courses/multiple-target-tracking +docker run --rm -it -p 8888:8888 -e JUPYTER_LAB_ENABLE=yes gitlab.liu.se:5000/phd-courses/multiple-target-tracking ``` # Documentation -- GitLab