EnglishFrenchSpanish

Ad


OnWorks favicon

docker-pull - Online in the Cloud

Run docker-pull in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command docker-pull that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


docker-pull - Pull an image or a repository from a registry

SYNOPSIS


docker pull [-a|--all-tags] [--help] NAME[:TAG] |
[REGISTRY_HOST[:REGISTRY_PORT]/]NAME[:TAG]

DESCRIPTION


This command pulls down an image or a repository from a registry. If there is more than
one image for a repository (e.g., fedora) then all images for that repository name can be
pulled down including any tags (see the option -a or --all-tags).

If you do not specify a REGISTRY_HOST, the command uses Docker's public registry located
at registry-1.docker.io by default.

OPTIONS


-a, --all-tags=true|false
Download all tagged images in the repository. The default is false.

--help
Print usage statement

EXAMPLE


Pull a repository with multiple images with the -a|--all-tags option set to true.


Note that if the image is previously downloaded then the status would be Status: Image is
up to date for fedora.

$ docker pull --all-tags fedora
Pulling repository fedora
ad57ef8d78d7: Download complete
105182bb5e8b: Download complete
511136ea3c5a: Download complete
73bd853d2ea5: Download complete

Status: Downloaded newer image for fedora

$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
fedora rawhide ad57ef8d78d7 5 days ago 359.3 MB
fedora 20 105182bb5e8b 5 days ago 372.7 MB
fedora heisenbug 105182bb5e8b 5 days ago 372.7 MB
fedora latest 105182bb5e8b 5 days ago 372.7 MB

Pull a repository with the -a|--all-tags option set to false (this is the default).


$ docker pull debian
Using default tag: latest
latest: Pulling from library/debian
2c49f83e0b13: Pull complete
4a5e6db8c069: Pull complete

Status: Downloaded newer image for debian:latest

$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
debian latest 4a5e6db8c069 5 days ago 125.1 MB

Pull an image, manually specifying path to Docker's public registry and tag


Note that if the image is previously downloaded then the status would be Status: Image is
up to date for registry.hub.docker.com/fedora:20

$ docker pull registry.hub.docker.com/fedora:20
Pulling repository fedora
3f2fed40e4b0: Download complete
511136ea3c5a: Download complete
fd241224e9cf: Download complete

Status: Downloaded newer image for registry.hub.docker.com/fedora:20

$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
fedora 20 3f2fed40e4b0 4 days ago 372.7 MB

HISTORY


April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on
docker.com source material and internal work. June 2014, updated by Sven Dowideit
[email protected]⟩ August 2014, updated by Sven Dowideit
[email protected]⟩ April 2015, updated by John Willis ⟨[email protected]
April 2015, updated by Mary Anthony for v2 ⟨[email protected]⟩ September 2015, updated by
Sally O'Malley ⟨[email protected]

Use docker-pull online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    VASSAL Engine
    VASSAL Engine
    VASSAL is a game engine for creating
    electronic versions of traditional board
    and card games. It provides support for
    game piece rendering and interaction,
    and...
    Download VASSAL Engine
  • 2
    OpenPDF - Fork of iText
    OpenPDF - Fork of iText
    OpenPDF is a Java library for creating
    and editing PDF files with a LGPL and
    MPL open source license. OpenPDF is the
    LGPL/MPL open source successor of iText,
    a...
    Download OpenPDF - Fork of iText
  • 3
    SAGA GIS
    SAGA GIS
    SAGA - System for Automated
    Geoscientific Analyses - is a Geographic
    Information System (GIS) software with
    immense capabilities for geodata
    processing and ana...
    Download SAGA GIS
  • 4
    Toolbox for Java/JTOpen
    Toolbox for Java/JTOpen
    The IBM Toolbox for Java / JTOpen is a
    library of Java classes supporting the
    client/server and internet programming
    models to a system running OS/400,
    i5/OS, o...
    Download Toolbox for Java/JTOpen
  • 5
    D3.js
    D3.js
    D3.js (or D3 for Data-Driven Documents)
    is a JavaScript library that allows you
    to produce dynamic, interactive data
    visualizations in web browsers. With D3
    you...
    Download D3.js
  • 6
    Shadowsocks
    Shadowsocks
    A fast tunnel proxy that helps you
    bypass firewalls This is an application
    that can also be fetched from
    https://sourceforge.net/projects/shadowsocksgui/.
    It ha...
    Download Shadowsocks
  • More »

Linux commands

Ad