├── .gitignore ├── README.md ├── pom.xml └── src ├── main ├── docker │ └── Dockerfile ├── java │ └── hello │ │ └── Application.java └── resources │ └── application.yml └── test └── java └── hello └── HelloWorldConfigurationTests.java /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .idea 3 | *.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingohuang/spring-boot-docker/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingohuang/spring-boot-docker/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingohuang/spring-boot-docker/HEAD/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /src/main/java/hello/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingohuang/spring-boot-docker/HEAD/src/main/java/hello/Application.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8080 3 | -------------------------------------------------------------------------------- /src/test/java/hello/HelloWorldConfigurationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bingohuang/spring-boot-docker/HEAD/src/test/java/hello/HelloWorldConfigurationTests.java --------------------------------------------------------------------------------