English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Docker Push Command

Docker Command Reference

docker push : Before uploading the local image to the image repository, you need to log in to the image repository first

Syntax

docker push [OPTIONS] NAME[:TAG]

OPTIONS Description:

  • --disable-content-trust :Ignore the image verification, default is enabled

Online Examples

Upload the local image myapache:v1to the image repository.

docker push myapache:v1

Docker Command Reference