Docker push Command
docker push: Uploads the local image to the image registry, requires logging in to the image registry first.
Syntax
docker push [OPTIONS] NAME[:TAG]
OPTIONS Description:
-
--disable-content-trust: Skips image verification, enabled by default.
Example
Upload the local image myapache:v1 to the image registry.
docker push myapache:v1