Skip to main content
Manage container registry authentications for private Docker images.
runpodctl registry <subcommand> [flags]

Alias

You can use reg as a shorthand for registry:
runpodctl reg list

Subcommands

List registry authentications

List all your container registry authentications:
runpodctl registry list

Get registry authentication details

Get details about a specific registry authentication:
runpodctl registry get <registry-id>

Create a registry authentication

Create credentials for a private container registry:
runpodctl registry create --name "docker-hub" --username "myuser" --password "mypassword"

Create flags

--name
string
required
Name for this registry authentication.
--username
string
required
Registry username.
--password
string
required
Registry password or access token.

Delete a registry authentication

Delete a registry authentication:
runpodctl registry delete <registry-id>