Springboot Docker Windows7

时间:2018-05-19 01:00:06

标签: windows docker spring-boot windows-7 64-bit

我创建了最简单的基本spring-boot hellow world应用程序并尝试在docker上运行它。但是我收到了错误。以下是更多细节 -

OS- Windows 7,64位

Docker版本:Docker版本18.03.0-ce,版本0520e24302

Springboot版本:1.5.14.BUILD-SNAPSHOT

我的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.springboot.docker</groupId>
    <artifactId>spring-boot-docker</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>spring-boot-docker</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.14.BUILD-SNAPSHOT</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <finalName>spring-boot-docker</finalName>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-snapshots</id>
            <name>Spring Snapshots</name>
            <url>https://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>spring-snapshots</id>
            <name>Spring Snapshots</name>
            <url>https://repo.spring.io/snapshot</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
        <pluginRepository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>


</project>

我的Dockerfile

FROM java:8
VOLUME /tmp
EXPOSE 8082
ADD target/spring-boot-docker.jar spring-boot-docker.jar
ENTRYPOINT ["java","-jar","spring-boot-docker.jar"]

我的application.properties

server.port=8082

我的java课程

@SpringBootApplication
public class SpringBootDockerApplication {

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

@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String sayHi() {
        return "Hi";
    }
}

我通过在本地运行它来测试此应用程序,当我点击时:http://localhost:8082/hello我看到预期的消息“嗨”

然后我做了mvn clean install来创建我的应用程序的目标jar。 然后我在我的Windows机器上启动了“Docker Quickstart终端”。 之后我去了我的代码所在的目录,然后从那里运行命令::

docker build . -t spring-boot-docker  

当我查看泊坞窗图像时,我可以看到新图像创建了spring-boot-docker。

之后我运行以下命令从该图像创建容器

docker run --name springbootdocker -d spring-boot-docker:latest

我可以看到使用命令创建的容器:“docker ps” 我还检查了“docker logs springbootdocker”

我尝试点击网址: http://localhost:8082/hello

我收到错误消息:

无法访问此网站 localhost拒绝连接。 在Google上搜索localhost 8082你好 ERR_CONNECTION_REFUSED

在Windows上运行docker是否存在已知问题?

我是否需要更改Dockerfile以在ubuntu或其他类似的地方运行?

1 个答案:

答案 0 :(得分:-1)

答案很简单。 尽管一切都在Windows上发生,但是底层操作系统是Linux,因此我们必须用VM的Linux机器的IP地址替换localhost。 所以不要点击:http://localhost:8082/hello 我必须点击:http://192.168.99.100:8082/hello