可以通过uname -r 来查看linux内核版本.
[root@localhost ~]# uname -r
3.10.0-327.el7.x86_64
最后,建议你全面更新你的系统. 请记住,你已经完全修复任何潜在的内核bug.
有两种方式来安装Docker,这里只介绍其中的一种,通过yum来安装Docker.
1、用一个用户登录你的机器,这个用户必须拥有sudo或root权限.
2、为了确保你的yum包是最新的,用下面脚本做下更新.
[root@localhost ~]# sudo yum update
3、加入yum repo
$ sudo tee /etc/yum.repos.d/docker.repo <<-'EOF'
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/7/
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.or
4、安装Docker包
$ sudo yum install docker-engine
5、启动Docker守护进程
$ sudo service docker start
6、通过运行容器中的一个测试image,来验证你的Docker安装正确.
$ sudo docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from hello-world
a8219747be10: Pull complete
91c95931e552: Already exists
hello-world:latest: The image you are pulling has been verified. Important: image verification is a tech preview feature and should not be relied on to provide security.
Digest: sha256:aa03e5d0d5553b4c3473e89c8619cf79df368babd1.7.1cf5daeb82aab55838d
Status: Downloaded newer image for hello-world:latest
Hello from Docker.
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(Assuming it was not already locally available.)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
For more examples and ideas, visit:
http://docs.docker.com/userguide/
至此,Docker就已安装好了.
若要保证,你开机时,自动启动Docker,可以执行如下的命令:
[root@localhost ~]# systemctl enable docker.service
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/systemd/system/docker.service.
出现以上说明设置开机自启动成功
· 编辑 /usr/lib/systemd/system/docker.service 文件,修改 ExecStart 处:
vim /usr/lib/systemd/system/docker.service
· ExecStart=/usr/bin/dockerd-current 修改为 ExecStart=/usr/bin/dockerd-current--registry-mirror=https://registry.docker-cn.com -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock
(此处注意,如果你的原内容没有current,那么修改的文件也不带current)
修改完后 先执行:systemctl daemon-reload
再执行启动:systemctl restart docker
测试配置是否成功
输入命令:curl http://127.0.0.1:2375/info
测试配置是否成功
curl http://127.0.0.1:2375/info
如上所示成功
设置 2375端口可以被外部机器正常访问
Springboot 项目配置
FROM frolvlad/alpine-oraclejdk8
VOLUME /tmp
ADD testService-0.0.1-SNAPSHOT.jar app.jar 这个地方红色是打包后的jar包名
RUN sh -c 'touch /app.jar' app.jar是别名
ENV JAVA_OPTS=""
ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]
以上即为打包成功
可以通过
docker run -p 8080:8080 -t ramer/springboot-with-docker
或者通过
docker run -p 8762:8761 da279ae920c8
第一种是根据打包后的镜像名称来启动,第一种是根据打包后的镜像id来启动 其中端口号,前面一个表示你设置的端口号,也就是你启动后要访问的端口号,后面一个端口号是springboot项目中的端口号
在删除镜像时,如果镜像已经置于容器中要先停止容器:docker container kill [容器ID]
查看容器输入命令:docker ps -a ,然后再删除容器docker container rm [containerID]
删除容器后才能删除镜像
1. 运行容器
docker container run ###(容器名)
2. 停止容器
docker container kill [容器ID]
3. 列出本机正在运行的容器
docker container ls
4. 列出本机所有容器,包括终止运行的容器
docker container ls --all | docker ps -a (显示包括已删除的,退出的等)
5. 删除容器文件,这样就不会占用硬盘空间
docker container rm [containerID]
12.docker 命令补充
# 先重启 systemctl 守护进程
$ sudo systemctl daemon-reload
# 再开启 docker 服务
$ sudo systemctl start docker
13.docker容器的日志查看
先切换到 /var/lib/containers/
然后ls 找到你要查看的容器id ,进入到对应的id目录
然后ls 找到.log文件,cat文件名 或者 less文件名查看
也可以vim 或者vi 编辑查看