`
阅读更多

SpringBoot Docker入门,SpringBoot Docker安装

 

================================

©Copyright 蕃薯耀 2018年4月2日

http://fanshuyao.iteye.com/

 

一、安装Docker

1、查看Linux版本

uname -r

 Docker要求Linux系统的版本不低于3.10,如下:

uname -r
  3.10.0-327.el7.x86_64

 

2、安装Docker

yum install docker

 

安装过程需要输入 y 确定安装

当出现

Complete!

表示Docker安装成功!

 

3、启动Docker

systemctl start docker

 

4、查看Docker版本

docker -v

 结果如下:

[root@localhost ~]# docker -v
Docker version 1.13.1, build 774336d/1.13.1

或者使用:

docker version

 结果如下:

[root@localhost ~]# docker version

Client:
 Version:         1.13.1
 API version:     1.26
 Package version: <unknown>
 Go version:      go1.8.3
 Git commit:      774336d/1.13.1
 Built:           Wed Mar  7 17:06:16 2018
 OS/Arch:         linux/amd64
Server:
 Version:         1.13.1
 API version:     1.26 (minimum version 1.12)
 Package version: <unknown>
 Go version:      go1.8.3
 Git commit:      774336d/1.13.1
 Built:           Wed Mar  7 17:06:16 2018
 OS/Arch:         linux/amd64
 Experimental:    false

 

5、设置Docker开机启动

systemctl enable docker

 结果如下:

[root@localhost ~]# systemctl enable docker
Created symlink from /etc/systemd/system/multi-user.target.wants/docker.service to /usr/lib/
systemd/system/docker.service.

 

6、停止Docker

systemctl stop docker

 

二、Docker使用

1、搜索Mysql

docker search mysql

 

2、下载mysql

docker pull mysql

 默认是下载最新版本,如果想下载指定版本的,可以加上tag,tag指的就是版本号,

 

查看版本可以到docker Hub:https://hub.docker.com/r/library/mysql/tags/

命令如下:

docker pull mysql:tag

 如:

docker pull mysql:5.5

 

3、更换Dock Hub

官网地址:https://hub.docker.com/explore/

使用docker Hub直接下载会出现超时,如下:

net/http: TLS handshake timeout

 所以需要更换镜像,如下(更改为阿里的镜像):

curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s https://04c5r1cy.mirror.aliyuncs.com

 然后重启docker

systemctl restart docker

 此时会发生错误:

Job for docker.service failed because the control process exited with error code. See "systemctl statu
s docker.service" and "journalctl -xe" for details.

 原因是修改了镜像,造成/etc/docker/daemon.json文件的格式不正确,后面多了一个逗号

 

查看daemon.json文件:

vi /etc/docker/daemon.json

 文件内容如下:

{"registry-mirrors": ["https://04c5r1cy.mirror.aliyuncs.com"],}

 后面多了一个逗号,需要删除,修改为

{"registry-mirrors": ["https://04c5r1cy.mirror.aliyuncs.com"]}

 保存退出,重启docker

systemctl restart docker

 然后再去获取mysql 5.5版本

docker pull mysql:5.5

 

4、查看系统存在的镜像

docker images

 结果如下:

[root@localhost ~]# docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
docker.io/mysql     5.5                 0da48351c371        2 weeks ago         205 MB

 

三、运行镜像(容器使用)

1、运行一个镜像组件,即创建一个docker窗口,可以运行多个

docker run --name xxxx -d 组件名:版本号(Tag)

 --name:表示重命名(--是两横杠,这里看不出来)

-d:表示后台运行

如运行一个tomcat:

docker run --name mytomcat -d tomcat:8.5

 

2、查看运行中的容器

docker ps

 

3、查看所有容器,包括运行的和暂停的容器

docker ps -a

 

4、停止运行中的容器

docker stop 容器ID

 或

docker stop 容器names

 最好使用容器ID

 

5、重新开始运行暂定的容器

docker start 容器ID

 暂停的容器ID通过docker ps -a 查找

 

6、删除容器

docker rm -f 容器ID

 结果如下:

[root@localhost ~]# docker rm -f a9c2f22a4b50
a9c2f22a4b50

 

 

7、启动一个有端口映射的容器(Tomcat)

docker run -d -p 8888:8080 tomcat

 -d:表示后台运行

-p:表示端口映射,前面的端口为虚拟机的端口,后面的端口表示tomcat的端口,表示将虚拟机的8888端口映射到tomcat的8080端口,当访问192.168.1.166:8888就可以访问tomcat

启动的结果如下:

[root@localhost ~]# docker run --name tomcat8 -d -p 8080:8080 tomcat:8.5
b91a31986a63f82340c588272a334c164de571fb4201d628bad3418f55d7f20b
[root@localhost ~]# docker ps
CONTAINER ID  IMAGE       COMMAND           CREATED        STATUS        PORTS                    NAMES
b91a31986a63  tomcat:8.5  "catalina.sh run" 12 seconds ago Up 8 second   0.0.0.0:8080->8080/tcp   tomcat8

 

通过浏览器访问:http://localhost:8080/来检查tomcat有没有启动成功。

 

注意:

如果访问不了,可能是因为防火墙的原因!!!

查看防火墙状态:

service firewall status

关闭防火墙

service firewall stop

 

8、查看docker日志

docker logs 容器ID

 

9、其它:

使用

docker --help

 查看其它命令,如下:

[root@localhost ~]# docker --help

Usage:  docker COMMAND

A self-sufficient runtime for containers

Options:
      --config string      Location of client config files (default "/root/.docker")
  -D, --debug              Enable debug mode
      --help               Print usage
  -H, --host list          Daemon socket(s) to connect to (default [])
  -l, --log-level string   Set the logging level ("debug", "info", "warn", "error", 	                            "fatal") (default "info")
      --tls                Use TLS; implied by --tlsverify
      --tlscacert string   Trust certs signed only by this CA (default                                              "/root/.docker/ca.pem")
      --tlscert string     Path to TLS certificate file (default                                                    "/root/.docker/cert.pem")
      --tlskey string      Path to TLS key file (default "/root/.docker/key.pem")
      --tlsverify          Use TLS and verify the remote
  -v, --version            Print version information and quit

Management Commands:
  container   Manage containers
  image       Manage images
  network     Manage networks
  node        Manage Swarm nodes
  plugin      Manage plugins
  secret      Manage Docker secrets
  service     Manage services
  stack       Manage Docker stacks
  swarm       Manage Swarm
  system      Manage Docker
  volume      Manage volumes

Commands:
  attach      Attach to a running container
  build       Build an image from a Dockerfile
  commit      Create a new image from a container's changes
  cp          Copy files/folders between a container and the local filesystem
  create      Create a new container
  diff        Inspect changes on a container's filesystem
  events      Get real time events from the server
  exec        Run a command in a running container
  export      Export a container's filesystem as a tar archive
  history     Show the history of an image
  images      List images
  import      Import the contents from a tarball to create a filesystem image
  info        Display system-wide information
  inspect     Return low-level information on Docker objects
  kill        Kill one or more running containers
  load        Load an image from a tar archive or STDIN
  login       Log in to a Docker registry
  logout      Log out from a Docker registry
  logs        Fetch the logs of a container
  pause       Pause all processes within one or more containers
  port        List port mappings or a specific mapping for the container
  ps          List containers
  pull        Pull an image or a repository from a registry
  push        Push an image or a repository to a registry
  rename      Rename a container
  restart     Restart one or more containers
  rm          Remove one or more containers
  rmi         Remove one or more images
  run         Run a command in a new container
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  search      Search the Docker Hub for images
  start       Start one or more stopped containers
  stats       Display a live stream of container(s) resource usage statistics
  stop        Stop one or more running containers
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  version     Show the Docker version information
  wait        Block until one or more containers stop, then print their exit codes

Run 'docker COMMAND --help' for more information on a command.

 

 

 

================================

©Copyright 蕃薯耀 2018年4月2日

http://fanshuyao.iteye.com/

1
0
分享到:
评论
1 楼 蕃薯耀 2018-04-02  
SpringBoot Docker入门,SpringBoot Docker安装,SpringBoot Docker下载

========
蕃薯耀

相关推荐

    springboot从入门到精通

    本资源包"springboot从入门到精通"旨在帮助初学者和进阶者全面掌握SpringBoot的核心概念和技术。 一、SpringBoot基础 SpringBoot的基础部分涵盖了如何创建第一个SpringBoot项目,通过起步依赖(Starters)简化Maven...

    Springboot入门到精通完整版.pdf

    Spring Boot 是一个由 Pivotal 团队开发的框架,其设计目的是简化...通过阅读《Springboot入门到精通【完整版】》,你可以系统地学习这个框架,通过实例和实践练习加深理解,逐步成为一名精通Spring Boot的开发者。

    SpringBoot快速入门单纯的SPringBoot项目

    **SpringBoot快速入门** SpringBoot是由Pivotal团队提供的全新框架,其设计目标是为了简化Spring应用的初始搭建以及开发过程。它集成了大量的常用组件,如数据源、JPA、定时任务、WebSocket等,使得开发者可以快速...

    SpringBoot 从入门到进阶系列官方小册.rar

    9. **云原生支持**:讨论SpringBoot对Docker、Kubernetes等云平台的兼容性,以及如何构建可部署的容器化应用。 10. **测试与调试**:指导如何编写单元测试和集成测试,使用SpringBoot的测试支持工具进行调试。 11....

    SpringBoot入门基础以及应用

    ### SpringBoot入门基础以及应用 #### 一、SpringBoot简介 SpringBoot是由Pivotal团队在2013年推出的,旨在简化Spring框架的应用程序开发流程。在过去,Spring框架因其强大的功能而广受欢迎,但同时也因为其配置...

    128元尚硅谷Java视频教程_SpringBoot视频教程(上)核心技术篇

    56、尚硅谷_SpringBoot_Docker-docker安装&启动&停止 57、尚硅谷_SpringBoot_Docker-docker镜像操作常用命令 58、尚硅谷_SpringBoot_Docker-docker容器操作常用命令 59、尚硅谷_SpringBoot_Docker-docker安装...

    springboot-demo-helloworld-docker.rar

    # SpringBoot的特点为基于Spring的开发提供更快的入门体验开箱即用,没有代码生成,也无需XML配置。同时也可以修改默认值来满足特定的需求提供了一些大型项目中常见的非功能性特性,如嵌入式服务器、安全、指标,...

    SpringBoot 从入门到进阶系列官方小册_springboot_java_初学者_

    SpringBoot 是一款基于Java的框架,由Pivotal团队开发,旨在简化Spring应用程序的初始搭建以及开发过程。...通过阅读《SpringBoot 从入门到进阶系列官方小册》,你将能够构建出高效、可维护的SpringBoot应用。

    Strong《docker入门到精通》

    docker入门到精通,springboot\mybatis\redis\mysql\gitlab

    springboot从入门到精通 一步一步走向成功之路

    这个教程将带你从入门到精通,逐步掌握SpringBoot的核心概念和技术,助你在软件开发的道路上迈向成功。 首先,SpringBoot的核心特性在于“约定优于配置”,它默认配置了很多常见功能,如嵌入式Servlet容器(Tomcat...

    springboot-demo项目 docker compose从入门到放弃教程中的案例

    springboot-demo项目 docker compose从入门到放弃教程中的案例

    Java SpringBoot课件+源码视频教程

    56、_SpringBoot_Docker-docker安装&启动&停止 % u9 k2 P+ H! _4 `( t# ~ 57、_SpringBoot_Docker-docker镜像操作常用命令 v# x4 k1 \* Y$ K; U4 L9 H' D 58、_SpringBoot_Docker-docker容器操作常用命令 59、_...

    尚硅谷2018最新SpringBoot教学视频(内含Docker)

    尚硅谷最新SpringBoot教学视频,包含docker部分内容,有兴趣的同学可以好好看看

    SpringBoot入门基础.ppt

    SpringBoot入门基础 一、SpringBoot的简介 SpringBoot是由Pivotal团队开发的一个全新框架,旨在简化Spring应用的初始搭建以及开发过程。它不是为了替代Spring IO平台中的任何现有项目,而是为了提供一种更简便的...

    springboot详细入门教程,适用于学习、教学使用

    ### Spring Boot 入门教程详解 #### 一、Spring Boot 的简介 Spring Boot 是由 Pivotal 团队推出的全新框架,旨在简化 Spring 应用的开发过程。它并不是为了取代现有的 Spring IO 平台中的任何组件,而是通过提供...

    详解如何使用Docker部署一个web项目并打包成镜像文件

    docker基本入门以后,可以试试打包docker镜像与dockerfile了 docker镜像 docker hub仓库有2类仓库,用户仓库和顶层仓库,用户仓库由docker用户创建的,顶层仓库由docker内部的人来管理的。仓库里存放的是镜像文件,...

    基于SpringBoot框架搭建的物联网数据采集系统服务器端(源码).zip

    同时,通过Docker容器化技术,可以方便地进行环境隔离和应用扩展。 总结而言,基于SpringBoot的物联网数据采集系统服务器端是一个实用的实践案例,它融合了SpringBoot的强大功能和物联网的数据处理需求。通过学习和...

Global site tag (gtag.js) - Google Analytics