Docker使用指北

基础概念

  • image: an environment schema 可以理解为一个模板
  • container: an instance of an image 模板的一个实例

查看状态

docker ps -a                # Lists containers (and tells you which images they are spun from)

docker images               # Lists images 

docker rm <container_id>    # Removes a stopped container

docker rm -f <container_id> # Forces the removal of a running container (uses SIGKILL)

docker rmi <image_id>       # Removes an image 
                            # Will fail if there is a running instance of that image i.e. container

docker rmi -f <image_id>    # Forces removal of image even if it is referenced in multiple repositories, 
                            # i.e. same image id given multiple names/tags 
                            # Will still fail if there is a docker container referencing image

构建简单的image

sudo docker pull ubuntu:18.04
sudo docker run -i -t ubuntu:18.04 

构建image

https://www.runoob.com/docker/docker-dockerfile.html
https://yeasy.gitbook.io/docker_practice/image/dockerfile/copy

mkdir ~/dockerfile
cd ~/dockerfile
# do not misspelling Dockerfile, it serves as makefile
vim Dockerfile 

# Content of Dockerfile
FROM ubuntu
RUN apt-get update && yes | apt-get install clang && yes | apt-get install git 
VOLUME /home/katsura
WORKDIR /home/katsura
COPY file1 ./
COPY file2 ./
COPY dir1 ./
CMD xxx.sh


# Brief introduction (Details can be found in the link above)
# FROM: specify base image
# RUN: specify the command used when starting a container, typically some environment installation operation. 
# VOLUME: 

从image构建容器

# will create a new container
docker run <image name>
# create a new container and enter a bash CLI. 
docker run -it <image name>:<image tag> bash
# with memory  limit & gdb enabled
docker run -it -m 61440M --memory-swap -1 --cap-add sys_ptrace --security-opt seccomp=unconfined --name exe ubuntu:18.04 /bin/bash
# kill the daemon container
docker container kill <container ID>
#

构建完后的常用指令

yes | apt-get install curl
yes | apt-get install zsh
yes | apt-get install git
yes | apt-get install gdb
yes | apt-get install sudo
yes | apt-get install clang
yes | apt-get install htop
yes | apt-get install cmake
yes | apt-get install ctags
yes | apt-get install vim
yes | apt-get install g++-8
yes | apt-get install locales
yes | apt-get install flex 
yes | apt-get install bison 
yes | apt-get install zlib1g-dev 
yes | apt-get install libreadline6-dev 
yes | apt-get install libboost-all-dev 
yes | apt-get install libncurses5-dev

echo en_US.UTF-8 UTF-8 > /etc/locale.gen
locale-gen en_US.UTF-8

useradd -m lirui
passwd lirui
usermod -a -G sudo lirui
su lirui
chsh # change default shell 
# and then input /usr/bin/zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# copy these file to image 
~/.zshrc
~/.vimrc
~/.vim.tar
/usr/local/bin/clean_cache.sh

# Installation of pg... 
# git checkout repo
git checkout -b <local branch name> origin/<remote branch name>

mkdir -p /home/lirui/debugpsql
mkdir -p /home/lirui/.local/var/postgres
initdb -D /home/lirui/.local/var/postgres

# copy these files to imagge 
~/.local/var/postgres/postgresql.conf

# set sudo timeout
vim /etc/sudoers
Defaults env_reset, timestamp_timeout=0

保存容器到image

sudo docker commit [CONTAINER_ID] [new_image_name]

从宿主往container copy文件

docker cp <host file path> <container id>:<container file path>

从容器中访问宿主机(通过ip地址访问)

https://www.cnblogs.com/xuanmanstein/p/10559269.html

ip addr show docker0

从宿主机访问容器(通过ip地址访问)

https://stackoverflow.com/questions/17157721/how-to-get-a-docker-containers-ip-address-from-the-host

docker inspect <container id> | grep 'IPAddress"
# or use 
docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' <container id>

容器的开启关闭与连接

docker start <container id>
docker stop <container id>
# attach to the started container and enter the cli
# when exit the cli, the container will not be stopped
docker exec -it <container id> bash

容器的硬件限额

https://blog.csdn.net/fuck487/article/details/86096134

docker update --memory 1200m --memory-swap -1 

设置容器的权限

docker run --memory 51200m --memory-swap -1 --cap-add=SYS_TIME --cap-add=SYS_PTRACE  -it <image name>:<image tag> bash

常见错误

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

推荐阅读更多精彩内容