How to push images to your namespace
After configuring Docker on your local machine, you can use it to pull images from their library and push them to your Container Registry. This page shows you how to pull, tag, and push a first image to your Scaleway Container Registry namespace, using an Ubuntu image as an example.
Before you start
To complete the actions presented below, you must have:
- A Scaleway account logged into the console
- Owner status or IAM permissions allowing you to perform actions in the intended Organization
- A Container Registry namespace
- Docker installed on your local computer
- Access to your namespace
- Open a terminal window on your local computer.
- Pull the latest release of the Ubuntu Docker image:
docker pull ubuntu:latest ```bash
- Tag the image:
docker tag ubuntu:latest rg.fr-par.scw.cloud/mynamespace/ubuntu:latest
- Push the image to your Container Registry namespace using docker:
docker push rg.fr-par.scw.cloud/mynamespace/ubuntu:latest
See Also
Still need help?Create a support ticket