Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pages/container-registry/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 8 additions & 6 deletions pages/container-registry/how-to/push-images.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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/)

<Message type="important">
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.<REGION>.scw.cloud/<NAMESPACE>/<IMAGE>:<TAG>`
- For the region `it-mil`, use `scw.eu` instead of `scw.cloud`: `rg.it-mil.scw.eu/<NAMESPACE>/<IMAGE>:<TAG>`
</Message>

1. Open a terminal window on your local computer.
2. Pull the latest release of the [Ubuntu](https://hub.docker.com/_/ubuntu/) Docker image:
Expand All @@ -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/<NAMESPACE>/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/<NAMESPACE>/ubuntu:latest
```

<Message type="important">
Replace `mynamespace` in the examples above with the name of your namespace.
</Message>


Loading