Latest web development tutorials

Docker push command

Docker command Daquan Docker command Daquan


docker push: the local mirror image uploaded to the warehouse, the warehouse must first log in to the mirror

grammar

docker push [OPTIONS] NAME[:TAG]

OPTIONS Description:

  • --disable-content-trust: Ignore mirror check, enabled by default

Examples

Upload local mirror myapache: v1 to the mirror repository.

docker push myapache:v1

Docker command Daquan Docker command Daquan