Docker

docker images
docker run busybox:latest echo "hello world"
docker run -i -t busybox:latest 

docker run -d busybox:latest sleep 1000
docker ps 
docker ps -a
docker run --rm busybox:latest sleep 1 // remove the container when the execution is done
docker run --name hello busybox:latest
docker inspect container_id // show description of the container/image

docker run -it --rm -p 8888:8080 tomcat:9.0 // -p host_port:container_port
docker run -it -d -p 8888:8080 tomcat:9.0 // run it in the backend
docker logs container_id // check logs

docker rm container_id

docker stop $(docker ps -a -q)
docker images
docker rmi image_id

docker run -it debian:jessie
docker commit container_id repository_name:tag // after make some change in the container, you can commit it to repository. this is the first approach to build a new docker image.
// The second approach to build docker image
FROM debian:jessie
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y vim

docker build -t xxx/debian . // -t means tag
Each RUN command will create an image, so we need to improve the Dockerfile
FROM debian:jessie
RUN apt-get update && apt-get install -y \
    git \
    python \
    vim
// Best practice is to sort multi-line arguments alphanumerically

CMD instruction specifies what command you want to run when the container starts up.
If we don't specify CMD instruction in the Dockerfile, Docker will use the default command defined in the base image.(in this case, the default command is bash)
FROM debian:jessie
RUN apt-get update && apt-get install -y \
git \
vim 
CMD["echo", "hello docker"]
// when this container starts up, it will execute echo "hello docker"
// we can overwrite the CMD command in docker run

Docker Cache // if the instruction doesn't change, docker will simply reuse the existing layer.
//Aggressive caching
FROM ubuntu:14:04
RUN apt-get update
RUN apt-get install -y git
if there is another Dockerfile
FROM ubuntu:14:04
RUN apt-get update // it will reuse cache and will not update timely 
RUN apt-get install -y curl
// Solution 1: Chain Instructions
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y \
git \
curl
// Solution 2: Specify --no-cache option 
docker build -t xxx/debian . --no-cache=true

COPY instruction
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y \
git \
curl
COPY 123.txt /src/123.txt

ADD instruction
ADD can copy files and download a file to the container.
ADD also has the ability to unpack compressed files.
The rule is: use COPY first, unless you are sure you need ADD.

Avoid using latest tag.
docker tag image_id xxx/debian:1.01
docker login --username=xxx
docker push xxx/debian:1.01

docker exec -it container_id bash // run command in the running container

docker ps // docker container ls
docker container ls -a
docker stop container_name
docker start container_name
docker restart container_name

Docker container links
docker run -d -p 5000:5000 --link redis dockerapp:v0.3

docker-composite version
docker-composite up -d // -d run in backend
docker-composite ps
docker-composite logs
docker-composite logs container_name
docker-composite stop
docker-composite rm
docker-composite build // force to rebuild all images

Docker Networking
closed network/none network
bridge network
host network
overlay network

docker network ls
docker run -d --net none busybox sleep 1000
docker exec -it container_id /bin/ash

docker network inspect bridge
docker run -d --name container_1 busybox sleep 1000
docker exec -it container_1 ifconfig
docker run -d --name container_2 busybox slep 1000
docker exec -it container_2 ifconfig
docker exec -it container_1 ping 172.17.0.3 // be able to connect to container_2
docker exec -it container_1 ping 8.8.8.8

docker network create --driver bridge my_bridge_network
docker network inspect my_bridge_network
docker run -d --name container_3 --net my_bridge_network busybox sleep 1000
docker exec -it container_3 ifconfig
docker exec -it container_3 ping 172.17.0.2 // ping container_1
docker network connect bridge container_3 // add eth to container_3
docker exec -it container_3 ifconfig
docker exec -it container_3 ping 172.17.0.3
docker network disconnect bridge container_3 // remove eth
docker exec -it container_3 ifconfig

bridge network, container have access to two network interfaces 1. loopback interface 2. private interface
all containers in the same bridge network can communicate with each other
containers from different bridge networks can't connect with each other by default // but can connect/disconnect to certain custom bridge

Host network(have full access to the host's interface)(minimum network security leve)(higher level of performance)
docker run -d --name container_4 --net host busybox sleep 1000
docker exec -it container_4 ifconfig // show all eth of the host network

Overlay network在多个docker宿主机之间创建一个分布式网络
supports multi-host networking out-of-the-box

docker-compose up -d
docker network ls
docker-compose down

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 221,695评论 6 515
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 94,569评论 3 399
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 168,130评论 0 360
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 59,648评论 1 297
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 68,655评论 6 397
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 52,268评论 1 309
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,835评论 3 421
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,740评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 46,286评论 1 318
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 38,375评论 3 340
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,505评论 1 352
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 36,185评论 5 350
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,873评论 3 333
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 32,357评论 0 24
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,466评论 1 272
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,921评论 3 376
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 45,515评论 2 359

推荐阅读更多精彩内容

  • linux 查看系统版本确认使用的docker版本 uname -a --查看Linux内核版本命令cat /pr...
    只有香如故阅读 1,228评论 1 4
  • 五、Docker 端口映射 无论如何,这些 ip 是基于本地系统的并且容器的端口非本地主机是访问不到的。此外,除了...
    R_X阅读 1,758评论 0 7
  • kitematic没碰 Debian是完全由自由软件组成的类UNIX操作系统 netstat查看网络 网易蜂巢(可...
    继续加油吧阅读 528评论 0 0
  • 常用命令: sudo docker image ls 查看镜像 sudo docker image rm [i...
    SongOf阅读 132评论 0 0
  • Docker基础 这篇基础文章是方便用户在使用cSphere平台之前,了解docker基础知识。针对已经有一定的L...
    威谷子阅读 1,000评论 0 11