diff --git a/docs/architecture/cms.md b/docs/architecture/cms.md
index 8baa1f38a747b6b354ed8ff71f0fe8e5f79f300e..9b7d5d60ee57c1135f4d5fe881134a37d40bc957 100644
--- a/docs/architecture/cms.md
+++ b/docs/architecture/cms.md
@@ -4,7 +4,7 @@ For all the editorial content on the portal one CMS is used to offer the possibi
 
 ## Ghost: headless CMS
 
-![ghost-logo](/docs/assets/ghost-logo.png)
+![ghost-logo](../assets/ghost-logo.png)
 
 The choice went for the open source CMS [Ghost](https://ghost.org/), replacing Wordpress as our first choice at the beginning of the project.  
 Whereas it's not perfect and there is still room for improvement, this is a great tool to use to create content in a beautiful user interface. The API allows us to get all the information needed for the web application by a REST API.
diff --git a/docs/architecture/services/authentication.md b/docs/architecture/services/authentication.md
index 63735b58a7aa9d95ba289331ebe3734ef80ab8af..1c80f37db372d4f9c6763fddc176f61f393c0bfc 100644
--- a/docs/architecture/services/authentication.md
+++ b/docs/architecture/services/authentication.md
@@ -13,7 +13,7 @@ This service also provides endpoints to retrieve and update a user profile.
 
 ## How it works
 
-![authentication-service](/docs/assets/authentication-service.png)
+![authentication-service](../../assets/authentication-service.png)
 
 The entrypoint of the service is a REST API provided by a [NestJS](https://github.com/nestjs/nest) application. It depends on two other services:
 
diff --git a/docs/architecture/services/organizations.md b/docs/architecture/services/organizations.md
index 133676a7c3373382df17b88a5db94faff2dadfb8..f04d41c4e3057f307cd29b2e89d20c9de770656e 100644
--- a/docs/architecture/services/organizations.md
+++ b/docs/architecture/services/organizations.md
@@ -8,7 +8,7 @@ In our application, one organization is usually a provider of data, used in the
 
 ## How it works
 
-![organizations-service](/docs/assets/organizations-service.png)
+![organizations-service](../../assets/organizations-service.png)
 
 The entrypoint of the service is a REST API provided by a [NestJS](https://github.com/nestjs/nest) application. This backend application interacts with a PostgresSQL database through an ORM called [TypeORM](https://github.com/typeorm/typeorm).