diff --git a/STYLE.md b/STYLE.md
index b3172eb30a59fe13ddcf430705aa9469ab1d6f1b..b7b081110f4c89ef8d2b65353f27d143594d9e38 100644
--- a/STYLE.md
+++ b/STYLE.md
@@ -583,7 +583,7 @@ An example of a to-do comment with a GitLab issue follows:
 ```markdown
 <!--
 TODO: Update screenshots for v1.0
-https://gitlab.com/teklia/arkindex/doc/issues/99999
+https://gitlab.teklia.com/arkindex/doc/issues/99999
 -->
 ```
 
diff --git a/content/howto/on_premise/configuration.md b/content/howto/on_premise/configuration.md
index 63ced814f14aa9a0bacbb9be48e145bff2f51c42..ed537658c7c09b79f8cc1991d24c0ecf9a6f2986 100644
--- a/content/howto/on_premise/configuration.md
+++ b/content/howto/on_premise/configuration.md
@@ -8,7 +8,7 @@ path = "howto/on-premise/configuration/"
 
 You will find on this page all the configuration settings available for the Arkindex backend. These settings must be stored in a YAML file, and exposed using a Docker volume to the backend and worker container. The configuration path  is set through `CONFIG_PATH` environment variable.
 
-A minimal file is available on [our public repository](https://gitlab.com/teklia/arkindex/public-architecture/-/blob/master/config.yml).
+A minimal file is available on [our public repository](https://gitlab.teklia.com/arkindex/public-architecture/-/blob/master/config.yml).
 
 ## `allowed_hosts`
 
@@ -468,7 +468,7 @@ The AWS region the S3 buckets are located in. This has no effect when `endpoint`
 
 ### `tasks_image`
 
-A Docker tag for the Arkindex tasks image. This defaults to `registry.gitlab.com/arkindex/tasks`. When the image is specified without a tag, `:latest` is assumed.
+A Docker tag for the Arkindex tasks image. This defaults to `registry.gitlab.teklia.com/arkindex/tasks`. When the image is specified without a tag, `:latest` is assumed.
 
 This is used to specify which image to use for Ponos tasks when running imports from DataFiles, existing elements, S3 buckets, or when generating thumbnails.
 
diff --git a/content/howto/on_premise/docker_compose.md b/content/howto/on_premise/docker_compose.md
index 6e784d152268158034e1674d456bb8b5049a9853..92f89c50bfbafd39ca43310798a67fe286179527 100644
--- a/content/howto/on_premise/docker_compose.md
+++ b/content/howto/on_premise/docker_compose.md
@@ -46,9 +46,9 @@ Optional services:
 ## Arkindex software
 
 Teklia will provide you with several docker images (to load using [docker load](https://docs.docker.com/engine/reference/commandline/load/)):
-- the backend image, tagged `registry.gitlab.com/teklia/arkindex/backend:X.Y.Z`, must be present on your application server,
-- the tasks image, `registry.gitlab.com/teklia/arkindex/tasks:X.Y.Z`, will be used to by the remote workers (file imports, thumbnails generation, ...).
-- the ponos image, `registry.gitlab.com/teklia/arkindex/ponos:X.Y.Z` will be used to actually run the asynchronous tasks across all your remote workers.
+- the backend image, tagged `registry.gitlab.teklia.com/arkindex/backend:X.Y.Z`, must be present on your application server,
+- the tasks image, `registry.gitlab.teklia.com/arkindex/tasks:X.Y.Z`, will be used to by the remote workers (file imports, thumbnails generation, ...).
+- the ponos image, `registry.gitlab.teklia.com/arkindex/ponos-agent:X.Y.Z` will be used to actually run the asynchronous tasks across all your remote workers.
 - 
 {{ figure(image="howto/on_premise/stack.png", height=250, caption="Arkindex Platform and a single Worker") }}
 
@@ -56,12 +56,12 @@ The backend image mentioned above will run in two containers on your application
 1. for the API, this is really the heart of Arkindex,
 2. for the local asynchronous tasks that can directly reach the database (sqlite export, element deletion, ...)
 
-We recommend you to use our own CDN for the **frontend files**. Simply use the `assets.teklia.com` as source for static files in the backend configuration (you can look into [our own example](https://gitlab.com/teklia/arkindex/public-architecture/-/blob/master/config.yml)).
+We recommend you to use our own CDN for the **frontend files**. Simply use the `assets.teklia.com` as source for static files in the backend configuration (you can look into [our own example](https://gitlab.teklia.com/arkindex/public-architecture/-/blob/master/config.yml)).
 
 
 ### Docker-Compose
 
-We documented a working example of docker-compose setup in a [dedicated public repository](https://gitlab.com/teklia/arkindex/public-architecture/). You can clone this repository and use it as a starting point for your own deployment.
+We documented a working example of docker-compose setup in a [dedicated public repository](https://gitlab.teklia.com/arkindex/public-architecture/). You can clone this repository and use it as a starting point for your own deployment.
 
 Of course your setup may differ, you could use external services (databases, search engine, file storage, ...). You just need to run our own software through Docker, the other parts can be externalized.
 
@@ -69,13 +69,13 @@ Of course your setup may differ, you could use external services (databases, sea
 
 All the configuration options for the backend are detailed [on this page](@/howto/on_premise/configuration.md).
 
-A minimal configuration file is also available in the [public repository](https://gitlab.com/teklia/arkindex/public-architecture/-/blob/master/config.yml).
+A minimal configuration file is also available in the [public repository](https://gitlab.teklia.com/arkindex/public-architecture/-/blob/master/config.yml).
 
 ### Ponos
 
 If your setup requires Machine Learning process, you'll need at least one **Ponos Agent** on a dedicated server.
 
-The setup of this kind of server is easier, as it only requires to run the agent (from Docker image `registry.gitlab.com/teklia/arkindex/ponos`) and configure it. The tasks will then be triggered by the agent automatically.
+The setup of this kind of server is easier, as it only requires to run the agent (from Docker image `registry.gitlab.teklia.com/arkindex/ponos-agent`) and configure it. The tasks will then be triggered by the agent automatically.
 
 To begin the setup, you'll need 2 private keys: one for the backend, another for the agent. Each agent needs a dedicated key to authenticate itself.
 
@@ -108,7 +108,7 @@ docker run \
   -v ./agent.yml:/etc/ponos/agent.yml:ro \
   -v ./agent.key:/etc/ponos/agent.key:ro \
   -v ponos_data:/data
-  registry.gitlab.com/teklia/arkindex/ponos:X.Y.Z
+  registry.gitlab.teklia.com/arkindex/ponos-agent:X.Y.Z
 ```
 
 Please note that the agent requires a write access on the local Docker socket in order to create new containers that will run the tasks.
diff --git a/content/howto/run_process/index.md b/content/howto/run_process/index.md
index 0751adc334f6d8fe408ceb7d394c896f6227e4dd..395e672e234e3cbca77d9f7a86fc4749f9fc049f 100644
--- a/content/howto/run_process/index.md
+++ b/content/howto/run_process/index.md
@@ -149,7 +149,7 @@ When clicking on the **Retry** button or creating a new process with similar wor
 If some elements are locked in a `started` state and could never complete, you will have to wait a 1 hour timeout to start processing them again with this worker.
 
 {% warning() %}
-[Base worker package](https://gitlab.com/teklia/workers/base-worker/) must be at version `0.2.2` or above for a worker to skip processed elements.
+[Base worker package](https://gitlab.teklia.com/workers/base-worker/) must be at version `0.2.2` or above for a worker to skip processed elements.
 {% end %}
 
 It is also possible to list all existing activities at a project's level. This page is accessible from the main page of a project by clicking on **Action** > **Workers activity**.
diff --git a/content/overview/_index.md b/content/overview/_index.md
index a8618a1dc5801699d85a4a57bac0a66e771846ac..0eb30322364ac7d7e21223c51c26c9521ad68e21 100644
--- a/content/overview/_index.md
+++ b/content/overview/_index.md
@@ -25,7 +25,7 @@ These complex tools are easily launched from your web browser, and run on powerf
 
 {{ figure(image="overview/process.png", height=240, caption="Easily view the progress of Machine Learning workflows") }}
 
-<!-- TODO: Add link on how to create a process: https://gitlab.com/teklia/arkindex/doc/-/issues/8 -->
+<!-- TODO: Add link on how to create a process: https://gitlab.teklia.com/arkindex/doc/-/issues/8 -->
 
 ## Data Import
 
@@ -36,9 +36,9 @@ Arkindex can import your data from different sources:
 - an [Amazon S3](https://aws.amazon.com/s3/) bucket
 - [Transkribus](https://readcoop.eu/transkribus) collections
 
-<!-- TODO: Add link on how to import from transkribus: https://gitlab.com/teklia/arkindex/doc/-/issues/23 -->
+<!-- TODO: Add link on how to import from transkribus: https://gitlab.teklia.com/arkindex/doc/-/issues/23 -->
 
-<!-- TODO: Add link on how to create a process: https://gitlab.com/teklia/arkindex/doc/-/issues/7 -->
+<!-- TODO: Add link on how to create a process: https://gitlab.teklia.com/arkindex/doc/-/issues/7 -->
 
 ## Customizable user access
 
diff --git a/content/overview/api.md b/content/overview/api.md
index 20b5390edd1212bfc4bf0deb923e6635a0468ba8..b8b185e3234a4fd428501cca2905b2d37bd2e15a 100644
--- a/content/overview/api.md
+++ b/content/overview/api.md
@@ -16,7 +16,7 @@ We have open-sourced two API clients in Python to ease the usage of our platform
 
 ### Python API client
 
-A low-level API client in Python is available on PyPI as [arkindex-client](https://pypi.org/project/arkindex-client/). Its source code is freely available on [this repository](https://gitlab.com/teklia/arkindex/api-client/).
+A low-level API client in Python is available on PyPI as [arkindex-client](https://pypi.org/project/arkindex-client/). Its source code is freely available on [this repository](https://gitlab.teklia.com/arkindex/api-client/).
 
 You can install it on your computer (provided you have Python 3.6+ installed) using pip:
 
@@ -41,7 +41,7 @@ More documentation is available on the [official package page](https://pypi.org/
 ### Command line tool
 
 A more high-level tool is available using the command line. It implements common operations to be more efficient with Arkindex.
-It is available on PyPI as [arkindex-cli](https://pypi.org/project/arkindex-cli/). Its source code is freely available on [this repository](https://gitlab.com/teklia/arkindex/cli/).
+It is available on PyPI as [arkindex-cli](https://pypi.org/project/arkindex-cli/). Its source code is freely available on [this repository](https://gitlab.teklia.com/arkindex/cli/).
 
 A dedicated detailed documentation is available at [cli.arkindex.org](https://cli.arkindex.org/).