控制
- git init G
- git add/rm
- git commit -m “informatiom”
查看修改
- git status
- git diff # failure after use git add
- git log [–pretty=oneline//不输出作者时间等信息 ]
- git log --graph --pretty=oneline --abbrev-commit
docke search oracle
,选择相应的 image 拉取
1 | $ docker run -d --name oracle \ |
镜像说明文档 中 Additional options 的意思是自己基于它的基础包重修 build 的时候可以修改的参数。
PS:在给自用 Ubuntu 安装时非常顺利,在给测试平台的Centos7
安装时诡异地出现了docker-entrypoint.sh
中一条chown
语句卡出运行不了,修改文件中相应的语句后成功安装。
Linux 系统包含两类环境变量:系统环境变量和用户环境变量。
系统环境变量对所有系统用户都有效,用户环境变量仅仅对当前的用户有效。
1、修改用户环境变量
用户环境变量通常被存储在下面的文件中:
~/.profile
~/.bash_profile 或者 ~./bash_login
~/.bashrc
上述文件在 Ubuntu 10.0 以前版本不推荐使用。