Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Cloud Registry
  • Getting started
    • All guides
    • Creating a registry
  • Access management
  • Pricing policy
  • CLI reference
  • Audit Trails events
  1. Step-by-step guides
  2. Creating a registry

Creating a registry

Written by
Yandex Cloud
Updated at February 7, 2025
Management console
CLI
API
  1. In the management console, select the folder to create a registry in.
  2. In the list of services, select Cloud Registry.
  3. Go to the Registries tab.
  4. In the top-right corner, click Create registry.
  5. Select the registry format.
  6. If you selected Maven as registry format, specify a version policy:
    • Release: For stable versions.
    • Snapshot: For development with frequent updates.
    • Mixed: A combination of Release and Snapshot for flexibility.
  7. Enter a name and description for the registry.
  8. Click Create.

To create a registry, run this command:

yc cloud-registry registry create \
  --name <registry_name> \
  --description <registry_description> \
  --registry-kind <registry_format> \
  --registry-type <registry_location>

Where:

  • --name: Registry name.
  • --description: Registry description.
  • --registry-kind: Registry format. The available values are maven, npm, and docker.
  • --registry-type: Registry location. Possible value: local.

Result:

done (3s)
id: cn1fsnc2dak********
folder_id: b1gc1t4cb638********
name: my-first-registry
kind: DOCKER
type: LOCAL
status: ACTIVE
description: docker
created_at: "2024-11-30T16:11:12.901356Z"
modified_at: "2024-11-30T16:11:16.243323Z"

To create a registry, use the create REST API method for the Registry resource or the RegistryService/Create gRPC API call.

Was the article helpful?

Previous
All guides
Next
Installing and configuring Docker
© 2025 Direct Cursus Technology L.L.C.