diff --git a/README.md b/README.md
index 20fa3a31b42bf49678bf4c968385967bd0fc3f3d..aa0e60c17c7fef5e29584f7a3fd1fc5a317a1ead 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