HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/396/help/man/man1/gcloud_container_images_delete.1
.TH "GCLOUD_CONTAINER_IMAGES_DELETE" 1



.SH "NAME"
.HP
gcloud container images delete \- delete existing images



.SH "SYNOPSIS"
.HP
\f5gcloud container images delete\fR \fIIMAGE_NAME\fR [\fIIMAGE_NAME\fR\ ...] [\fB\-\-force\-delete\-tags\fR] [\fIGCLOUD_WIDE_FLAG\ ...\fR]



.SH "DESCRIPTION"

The container images delete command deletes the specified image from the
registry. All associated tags are also deleted.



.SH "EXAMPLES"

Deletes the image as long as there aren't additional, unspecified tags
referencing it:

.RS 2m
$ gcloud container images delete <IMAGE_NAME>
.RE

Deletes the image (and tags) from the input IMAGE_NAME:

.RS 2m
$ gcloud container images delete <IMAGE_NAME> \-\-force\-delete\-tags
.RE

Deletes the image (and tags) from the input IMAGE_NAME, without additional
prompting:

.RS 2m
$ gcloud container images delete <IMAGE_NAME> \-\-force\-delete\-tags \e
    \-\-quiet
.RE

To easily identify and delete untagged images in a project, first filter digests
that lack tags:

.RS 2m
$ gcloud container images list\-tags \e
    [HOSTNAME]/[PROJECT\-ID]/[IMAGE] \-\-filter='\-tags:*' \e
    \-\-format="get(digest)" \-\-limit=$BIG_NUMBER
.RE

Then, delete these tagless images without prompting by running:

.RS 2m
$ gcloud container images delete \e
    [HOSTNAME]/[PROJECT\-ID]/[IMAGE]@DIGEST \-\-quiet
.RE



.SH "POSITIONAL ARGUMENTS"

.RS 2m
.TP 2m
\fIIMAGE_NAME\fR [\fIIMAGE_NAME\fR ...]

The fully qualified name(s) of image(s) to delete. The name(s) should be
formatted as *.gcr.io/PROJECT_ID/IMAGE_PATH@sha256:DIGEST or
*.gcr.io/PROJECT_ID/IMAGE_PATH:TAG.


.RE
.sp

.SH "FLAGS"

.RS 2m
.TP 2m
\fB\-\-force\-delete\-tags\fR

If there are tags pointing to an image to be deleted then they must all be
specified explicitly, or this flag must be specified, for the command to
succeed.


.RE
.sp

.SH "GCLOUD WIDE FLAGS"

These flags are available to all commands: \-\-access\-token\-file, \-\-account,
\-\-billing\-project, \-\-configuration, \-\-flags\-file, \-\-flatten,
\-\-format, \-\-help, \-\-impersonate\-service\-account, \-\-log\-http,
\-\-project, \-\-quiet, \-\-trace\-token, \-\-user\-output\-enabled,
\-\-verbosity.

Run \fB$ gcloud help\fR for details.



.SH "NOTES"

These variants are also available:

.RS 2m
$ gcloud alpha container images delete
.RE

.RS 2m
$ gcloud beta container images delete
.RE