From 8a9ffa43aced802360c03379e78886317c60c732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Hutter?= Date: Sat, 21 Dec 2024 15:03:55 +0100 Subject: [PATCH] Fixed names of the container --- tools/docker/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/docker/README.md b/tools/docker/README.md index 0b1aa4f..ee460bc 100644 --- a/tools/docker/README.md +++ b/tools/docker/README.md @@ -8,7 +8,7 @@ The provided `Dockerfile` can be used to cerate a dockerized build environment w In order to build a docker container (in this example it will be namend `diplomarbeit-env` just run the following command on a docker host (Testsd with docker 20.10.22) ~~~~ -$ docker build -t diplomarbeit-env . +$ docker build -t htlle-da-env . ~~~~ This creates a container that contains all dependencies and expects to find your diplomathesis in mounted into the `/workspace` folder. @@ -21,7 +21,7 @@ Alternatively the image can be pulled from dockerhub. See instructions here: ht One can build the thesis ba running the followin command: ~~~~ -$ docker run -it --rm -v $(pwd):/workspace diplomarbeit-env +$ docker run -it --rm -v $(pwd):/workspace htlle-da-env ~~~~ This command runs the diplomarbeit-env container interactively, mounts the current directory into the container at /workspace, and automatically cleans up the container after it exits.