Linux:Docker

来自WHY42
imported>Soleverlee2017年5月11日 (四) 10:34的版本 (以“=基本命令= 安装现在直接下载dmg安装就可以了。目测会和VirtualBox什么的冲突,导致死机... <source lang="bash"> docker images docker sear...”为内容创建页面)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

基本命令

安装现在直接下载dmg安装就可以了。目测会和VirtualBox什么的冲突,导致死机...

docker images
docker search ubuntu
docker pull ubuntu
docker pull 
docker inspect f7b3f317ec73 #列出详细信息

查看所有tags

#!/bin/bash

if [ $# -lt 1 ]
then
cat << HELP

dockertags  --  list all tags for a Docker image on a remote registry.

EXAMPLE: 
    - list all tags for ubuntu:
       dockertags ubuntu

    - list all php tags containing apache:
       dockertags php apache

HELP
fi

image="$1"
tags=`wget -q https://registry.hub.docker.com/v1/repositories/${image}/tags -O -  | sed -e 's/[][]//g' -e 's/"//g' -e 's/ //g' | tr '}' '\n'  | awk -F: '{print $3}'`

if [ -n "$2" ]
then
    tags=` echo "${tags}" | grep "$2" `
fi

echo "${tags}"