服务器安装docker(最新Docker的安装与使用以及常见问题)

安装官方文档Linux下安装(CentOS 7.x)yum install -y docker查看版本 docker –versionWindows下安装官方说明安装条件 方式一: 截至2018年9月8日 官方要求:64位的Windows 10 Pro专业版,Enterprise企业版或Education教育版(1607周年更新,Build 14393或更高版本)Docker for Windows Installer.exe(下载地址)另外由于Windows版安装了Hyper-V 需开启硬件虚拟化百度教程方式二: 不满足上述条件并且在此之前的windows版本可下载 Docker Toolbox(下载地址) 不满足方式一的话建议就别在windows上玩,免得麻烦而且windows在上学习没啥用,当然若果你执迷不悟那就升级系统吧:Win10家庭版升级至Win10专业版,控制面板-系统和安全-系统-更换产品密钥 “VK7JG-NPHTM-C97JM-9MPGT-3V66T”注意事项安装Docker for Windows后会提示安装Hyper-V虚拟机,安装完成后需重启电脑才可使用安装完成重启后自动启动docker成功后,右键右下角docker图标-settings进入设置如图选择共享盘符,勾选后需输入你电脑PC用户开机登录密码若偶尔docker for windows启动失败,属抽风正常现象,请重新启动docker或重启电脑,仍无法启动请考虑尝试重置Docker(谨慎!将清空已安装好的所有镜像)Toolbox版本安装后启动需下载镜像,请保持网络通畅,等待下载完毕后将启动成功mac系统安装见官方文档或百度基本启用启动docker service docker start重启 service docker restart关闭 service docker stop常用命令学会常用help命令或查看 官方文档说明$ docker –help
Usage: docker COMMAND
A self-sufficient runtime for containers
Options:
–config string Location of client config files (default “/root/.docker”)
-D, –debug Enable debug mode
–help Print usage
-H, –host list Daemon socket(s) to connect to (default [])
-l, –log-level string Set the logging level (“debug”, “info”, “warn”, “error”, “fatal”) (default “info”)
–tls Use TLS; implied by –tlsverify
–tlscacert string Trust certs signed only by this CA (default “/root/.docker/ca.pem”)
–tlscert string Path to TLS certificate file (default “/root/.docker/cert.pem”)
–tlskey string Path to TLS key file (default “/root/.docker/key.pem”)
–tlsverify Use TLS and verify the remote
-v, –version Print version information and quit
Management Commands:
container Manage containers
image Manage images
network Manage networks
node Manage Swarm nodes
plugin Manage plugins
secret Manage Docker secrets
service Manage services
stack Manage Docker stacks
swarm Manage Swarm
system Manage Docker
volume Manage volumes
Commands:
attach Attach to a running container
build Build an image from a Dockerfile
commit Create a new image from a container’s changes
cp Copy files/folders between a container and the local filesystem
create Create a new container
diff Inspect changes on a container’s filesystem
events Get real time events from the server
exec Run a command in a running container
export Export a container’s filesystem as a tar archive
history Show the history of an image
images List images
import Import the contents from a tarball to create a filesystem image
info Display system-wide information
inspect Return low-level information on Docker objects
kill Kill one or more running containers
load Load an image from a tar archive or STDIN
login Log in to a Docker registry
logout Log out from a Docker registry
logs Fetch the logs of a container
pause Pause all processes within one or more containers
port List port mappings or a specific mapping for the container
ps List containers
pull Pull an image or a repository from a registry
push Push an image or a repository to a registry
rename Rename a container
restart Restart one or more containers
rm Remove one or more containers
rmi Remove one or more images
run Run a command in a new container
save Save one or more images to a tar archive (streamed to STDOUT by default)
search Search the Docker Hub for images
start Start one or more stopped containers
stats Display a live stream of container(s) resource usage statistics
stop Stop one or more running containers
tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
top Display the running processes of a container
unpause Unpause all processes within one or more containers
update Update configuration of one or more containers
version Show the Docker version information
wait Block until one or more containers stop, then print their exit codes
Run ‘docker COMMAND –help’ for more information on a command.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
基本命令仓库相关操作docker pull #从远程仓库拉取镜像到本地
docker push #推送本地镜像到远程仓库
docker search #在仓库搜索镜像
docker login #登录到官方仓库Docker Hub
docker logout #退出登录
1
2
3
4
5
镜像相关操作docker build #从Dockerfile构建镜像
docker pull #同上
docker push #同上
docker history #显示镜像的历史信息
docker images #列出镜像
docker rmi #删除镜像
docker tag #给镜像打上tag标签
docker run #创建容器并启动容器
docker create #创建容器
docker commit #将修改后的容器生成镜像
docker load #从压缩包中加载镜像
docker import #从归档文件中创建镜像
docker save #将镜像保存到压缩文件
1
2
3
4
5
6
7
8
9
10
11
12
13
容器相关操作docker attach #依附到一个正在运行的容器中
docker exec #进到正在运行的容器中执行命令
docker cp #在容器和本地系统间复制文件
docker update #将一个容器内所有的进程从暂停状态中恢复
docker ps #列出主机中的容器
docker port #查找一个nat到私有网口的公共口
docker top #查看一个容器中正在运行的进程信息
docker logs #查看日志文件
docker diff #检查容器内文件系统的修改
docker status #输出容器的资源使用统计信息
docker wait #阻塞直到容器终止
docker start #启动已创建的容器
docker pause #暂停运行中的容器
docker unpause #使暂停的容器恢复运行
docker stop #停止容器运行
docker rename #容器改名
docker restart #容器重启
docker kill #关闭运行中的容器
docker rm #删除容器
docker export #导出容器内容为tar包
docker run #同上
docker create #同上
docker commit #同上
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
其他基本命令docker events #从服务端获取实时的事件
docker info #查看系统相关信息
docker inspect #显示Docker对象的具体配置信息,包括容器,镜像,网络等
docker version #输出Docker的版本信息
1
2
3
4
管理命令docker container #容器管理
docker image #镜像管理
docker network #网络管理
docker node #节点管理
docker plugin #插件管理
docker secret #管理敏感数据及普通服务配置项
docker service #服务管理
docker stack #栈管理
docker swarm #集群管理
docker system #管理系统信息
docker volume #卷管理
1
2
3
4
5
6
7
8
9
10
11
一些命令图帮助大家记忆理解

本文出自快速备案,转载时请注明出处及相应链接。

本文永久链接: https://www.175ku.com/26895.html