博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
docker学习笔记-1
阅读量:4963 次
发布时间:2019-06-12

本文共 936 字,大约阅读时间需要 3 分钟。

docker学习笔记一:安装


mac安装docker

docker官方文档上有这么一段话:

Because the Docker daemon uses Linux-specific kernel features, you can’t run Docker natively in OS X. Instead, you must use docker-machine to create and attach to a virtual machine (VM). This machine is a Linux VM that hosts Docker for you on your Mac

由于docker使用了特定的Linux内核功能,因此不能用原生的方式在os x上运行docker,只能使用docker-machine去创建docker并将它绑定到linux虚拟机上。

注意:只能在OS X 10.8以上的版本的mac上安装docker。

安装步骤

  1. 如果你有VirtualBox正在运行,需要首先关闭正在运行的VirtualBox。
  2. 在下载docker toolbox。
  3. 下载完毕,执行安装,安装完毕如下图:
    33404233.jpg
  4. 执行最简单一个docker命令

    docker run hello-word // 这个命令会从dockerhub下载hello-world镜像

    73691851.jpg

  5. 执行上图的中建议的命令

    docker run -it ubuntu bash // 会在本地安装ubuntu的镜像

    通过docker images 命令可以查看到刚才下载到本地的镜像

    3294677.jpg


问题

  1. 执行命令:
sudo docker commit -m "add nginx from ubuntu" -a "hwy1782" 60fff3da025c hwy1782/ubuntu-nginx:v1报如下错误:Cannot connect to the Docker daemon. Is the docker daemon running on this host?

github上有相关的issue:


参考文献

转载于:https://www.cnblogs.com/h9527/p/5532781.html

你可能感兴趣的文章
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
java语法之final
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>