From be4f0fffcd95fcd5c6828ab9bb8a279e0c6d4c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jari-Matti=20M=C3=A4kel=C3=A4?= <jmjmak@utu.fi> Date: Thu, 15 Apr 2021 11:02:16 +0000 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 20fa3a3..aa0e60c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ $ docker pull registry.gitlab.utu.fi/tech/soft/thesis-builder To build the default profile: ```sh -$ git clone https://gitlab.utu.fi/tech/soft/thesis-builder +$ git clone https://gitlab.utu.fi/tech/soft/thesis/builder $ cd thesis-builder $ docker build . ``` @@ -44,7 +44,7 @@ $ docker build . To build the 'minimal' profile: ```sh -$ git clone https://gitlab.utu.fi/tech/soft/thesis-builder +$ git clone https://gitlab.utu.fi/tech/soft/thesis/builder $ cd thesis-builder $ docker build --build-arg TEXPROFILE=texlive-minimal.profile . ``` @@ -55,7 +55,7 @@ This example mounts the current directory to /src inside the Docker container. Mainly useful as a starting point. ```sh -$ docker run --mount type=bind,source=$(pwd),target=/src -it registry.gitlab.utu.fi/tech/soft/thesis-builder:latest +$ docker run --mount type=bind,source=$(pwd),target=/src -it registry.gitlab.utu.fi/tech/soft/thesis/builder:latest ``` ## Using in GitLab CI @@ -63,7 +63,7 @@ $ docker run --mount type=bind,source=$(pwd),target=/src -it registry.gitlab.utu Assumes the 'thesis.tex' is located in the project's root directory. ```yaml -image: registry.gitlab.utu.fi/tech/soft/thesis-builder:latest +image: registry.gitlab.utu.fi/tech/soft/thesis/builder:latest build: stage: build -- GitLab