Docker社区版使用笔记

支持作者

Docker指令说明
  1. 本文指令不全,如果你想看全部指令 docker --help

  2. 某条指令具体使用方法 docker command --help

  3. 不止是Docker其他软件你都可以用这种方法去查看指令以及介绍

安装
  1. 移除老版本
apt-get remove docker docker-engine
apt-get remove lxc-docker
```

2.执行以下指令安装可以让apt使用基于HTTPS的仓库

```
apt-get install \
   apt-transport-https \
   ca-certificates \
   curl \
   software-properties-common
```

3.添加Docker的官方GPG密钥

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -


2.添加docker到apt安装源

```
sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
apt-get update
```

验证指纹是否正确:9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88



```
apt-key fingerprint 0EBFCD88
```

4.使用以下命令设置稳定版本库

```
add-apt-repository \
  "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) \
  stable"
```



5.apt-get 更新一下

```
apt-get update
```

6.安装

```
apt-get install docker-ce
```

- 在生产系统上,您应该安装特定版本的Docker,而不是始终使用最新版本。

```
apt-get install docker-ce=
```

7.验证

```
docker run hello-world
```

##### 使用

- 获取镜像:docker pull ubuntu:16.10


    root@ubuntu:~/docker# docker pull ubuntu:16.10

    16.10: Pulling from library/ubuntu

    869d7e479fb8: Already exists

    fcde8cc75da4: Pull complete

    b9d18efd03be: Pull complete

    95ed9114795e: Pull complete

    63ec97b2b19c: Pull complete

    Digest: sha256:2c935ced8a4ebecab443216ee4dd9e11dc1c85f81a04f07277f99567238f00d9

    Status: Downloaded newer image for ubuntu:16.10

- 查看镜像:docker images


    root@ubuntu:~/docker# docker images

    REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE

    ubuntu              16.10               8d4c9ae219d0        11 days ago         106 MB

    hello-world         latest              48b5124b2768        4 months ago        1.84 kB
```



- 创建新容器:docker create -it ubuntu /bin/bash


    r oot@ubuntu:~/docker# docker create -it ubuntu:16.10
    7152c34497553e4ab32f844b20a02e61c3a956e960ab9a19ad46f34603c4ef60(返回的ID)


- 创建并运行一个新容器:docker run -it ubuntu /bin/bash



    root@ubuntu:~/docker# docker run -it ubuntu:16.10

    root@e3a8388cadb9:/#


- 查看所有容器:docker ps -a

- 启动一个容器:docker start [id_prefix]

- 停止一个容器:docker stop [id_prefix]

- 进入一个容器:docker attach [id_prefix]

- 退出容器并关闭:ctrl+d(快捷键)

- 只退出不关闭:ctrl+p+q(快捷键)

- 在一个运行的容器中执行指令:docker exec -ti [id_prefix] /bin/bash



- 从容器中创建一个images镜像:docker commit  -a [author] -m [message]  [container_id_prefix] [repository]:[Tag]

- 查看images:docker images



- 导出一个容器到tar文件:docker export -o [file] [id_prefix]

- 从容器文件中导入一个images:docker import -m [message] [file] [repository]:[Tag]

- 导出image镜像到tar文件:docker save -o [file] [repository]:[tag]或ImageID

- 导入image镜像从tar文件:docker load -i [file]



##### [Docker远程仓库](https://hub.docker.com)

1. 在[docker仓库](https://hub.docker.com)创建账户

2. 本地登陆:docker -u [username] -p [passwrd]

3. 将image镜像打成你的(REPOSITORY:TAG):docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]

4. push到远程仓库:docker push [NAME]:[TAG]

你可能感兴趣的:(Docker社区版使用笔记)