diff --git a/pages/container-registry/faq.mdx b/pages/container-registry/faq.mdx
index 81111d7f95..d455828f37 100644
--- a/pages/container-registry/faq.mdx
+++ b/pages/container-registry/faq.mdx
@@ -12,7 +12,6 @@ productIcon: RegistryProductIcon
Scaleway Container Registry is a fully managed mutualized Container Registry, designed to facilitate storing, managing, and deploying container images. It simplifies the development-to-production workflow as there is no need to operate its own Container Registry or worry about the underlying infrastructure.
You can store any docker container image on the Namespace and it is possible to set the visibility of each image towards your needs. It can either be private or public.
-The Service is currently available in our `nl-ams` (Amsterdam, The Netherlands), `fr-par` (Paris, France), and `pl-waw` (Poland, Warsaw) Availability Zones.
## Pricing and billing
diff --git a/pages/container-registry/how-to/push-images.mdx b/pages/container-registry/how-to/push-images.mdx
index f177d0392e..04ed96bc0a 100644
--- a/pages/container-registry/how-to/push-images.mdx
+++ b/pages/container-registry/how-to/push-images.mdx
@@ -3,7 +3,7 @@ title: How to push images to your namespace
description: Learn how to push container images to Scaleway's Container Registry.
tags: push-image namespace container-registry
dates:
- validation: 2025-07-01
+ validation: 2026-08-13
posted: 2019-02-25
---
import Requirements from '@macros/iam/requirements.mdx'
@@ -19,6 +19,11 @@ After [configuring Docker on your local machine](/container-registry/how-to/conn
- [Docker](https://www.docker.com/) installed on your local computer
- Access to your [namespace](/container-registry/how-to/connect-docker-cli/)
+
+ Replace the placeholders in the following examples with the appropriate values.
+ - For the regions `fr-par`, `nl-ams`, and `pl-waw`, use the format `rg..scw.cloud//:`
+ - For the region `it-mil`, use `scw.eu` instead of `scw.cloud`: `rg.it-mil.scw.eu//:`
+
1. Open a terminal window on your local computer.
2. Pull the latest release of the [Ubuntu](https://hub.docker.com/_/ubuntu/) Docker image:
@@ -27,15 +32,12 @@ After [configuring Docker on your local machine](/container-registry/how-to/conn
```
3. Tag the image:
```bash
- docker tag ubuntu:latest rg.fr-par.scw.cloud/mynamespace/ubuntu:latest
+ docker tag ubuntu:latest rg.fr-par.scw.cloud//ubuntu:latest
```
4. Push the image to your Container Registry namespace using docker:
```bash
- docker push rg.fr-par.scw.cloud/mynamespace/ubuntu:latest
+ docker push rg.fr-par.scw.cloud//ubuntu:latest
```
-
- Replace `mynamespace` in the examples above with the name of your namespace.
-