狗好看の世界

Less words, more attempting.

本狗的Docker尝试

常用的命令

列出现有的镜像

docker images

删除一个镜像

docker rmi <image>

从镜像创建一个容器

端口映射?

docker run -itP --name <container> <image>

列出所有的容器

docker ps
  • -a: 包含已经停止的

删除一个容器

docker rm <container>

连接到容器

--detach-keys 似乎有些问题, 版本应该足够, 目前原因不明. 默认的detach用 ctrl-p ctrl-q

docker attach --detach-keys="ctrl-\\" <container>

搭建一个用来开发的Docker镜像.

使用的ubuntu的镜像作为基础.

运行环境

Python

apt-get install python2.7

安装工具

Ag

apt-get install silversearcher-ag

tmux

apt-get install tmux

Git

apt-get install git

fish

apt-get install fish

Comments