docker笔记7:Docker微服务实战

1.通过IDEA新建一个普通微服务模块

docker笔记7:Docker微服务实战_第1张图片

 建Module   docker_boot

改POM



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.5.6
        
    

    com.atguigu.docker
    docker_boot
    0.0.1-SNAPSHOT

    
        UTF-8
        1.8
        1.8
        4.12
        1.2.17
        1.16.18
        5.1.47
        1.1.16
        4.1.5
        1.3.0
    

    
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
            
                org.apache.maven.plugins
                maven-resources-plugin
                3.1.0
            
        
    


 

写YML

 
server.port=6001

主启动

package com.atguigu.docker;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DockerBootApplication
{
    public static void main(String[] args)
    {
        SpringApplication.run(DockerBootApplication.class, args);
    }

}
 

业务类

package com.atguigu.docker.controller;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import java.util.UUID;

/**
 * @auther zzyy
 * @create 2021-10-25 17:43
 */
@RestController
public class OrderController
{
    @Value("${server.port}")
    private String port;

    @RequestMapping("/order/docker")
    public String helloDocker()
    {
        return "hello docker"+"\t"+port+"\t"+ UUID.randomUUID().toString();
    }

    @RequestMapping(value ="/order/index",method = RequestMethod.GET)
    public String index()
    {
        return "服务端口号: "+"\t"+port+"\t"+UUID.randomUUID().toString();
    }
}

2.通过dockerfile发布微服务部署到docker容器

docker笔记7:Docker微服务实战_第2张图片IDEA工具里面搞定微服务jar包

docker_boot-0.0.1-SNAPSHOT.jar

编写Dockerfile 

# 基础镜像使用java
FROM java:8

# 作者
MAINTAINER zzyy
# VOLUME 指定临时文件目录为/tmp,在主机/var/lib/docker目录下创建了一个临时文件并链接到容器的/tmp
VOLUME /tmp
# 将jar包添加到容器中并更名为zzyy_docker.jar
ADD docker_boot-0.0.1-SNAPSHOT.jar zzyy_docker.jar
# 运行jar包
RUN bash -c 'touch /zzyy_docker.jar'
ENTRYPOINT ["java","-jar","/zzyy_docker.jar"]
#暴露6001端口作为微服务
EXPOSE 6001
 

将微服务jar包和Dockerfile文件上传到同一个目录下/mydocker


docker build -t zzyy_docker:1.6 .

docker笔记7:Docker微服务实战_第3张图片
 

构建镜像 

 

docker build -t zzyy_docker:1.6 .

打包成镜像文件

运行容器

 docker run -d -p 6001:6001 zzyy_docker:1.6

 docker run -d -p 6001:6001 zzyy_docker:1.6

 访问测试

docker笔记7:Docker微服务实战_第4张图片 

你可能感兴趣的:(云原生技术,docker,笔记,微服务)