mirror of https://github.com/docker/docs.git
update shown contents of Spring project
The Dockerfile and Dockerfile.multi are created in later steps. The `springbootdocker` directory appears to be named `spring_boot_docker` in current download.
This commit is contained in:
parent
099d2bfae1
commit
fbacec6a47
|
@ -75,8 +75,6 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create
|
||||||
|
|
||||||
```plaintext
|
```plaintext
|
||||||
spring-boot-docker
|
spring-boot-docker
|
||||||
├── Dockerfile
|
|
||||||
├── Dockerfile.multi
|
|
||||||
├── HELP.md
|
├── HELP.md
|
||||||
├── mvnw
|
├── mvnw
|
||||||
├── mvnw.cmd
|
├── mvnw.cmd
|
||||||
|
@ -86,7 +84,7 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create
|
||||||
│ ├── java
|
│ ├── java
|
||||||
│ │ └── com
|
│ │ └── com
|
||||||
│ │ └── example
|
│ │ └── example
|
||||||
│ │ └── springbootdocker
|
│ │ └── spring_boot_docker
|
||||||
│ │ └── SpringBootDockerApplication.java
|
│ │ └── SpringBootDockerApplication.java
|
||||||
│ └── resources
|
│ └── resources
|
||||||
│ ├── application.properties
|
│ ├── application.properties
|
||||||
|
@ -96,10 +94,10 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create
|
||||||
└── java
|
└── java
|
||||||
└── com
|
└── com
|
||||||
└── example
|
└── example
|
||||||
└── springbootdocker
|
└── spring_boot_docker
|
||||||
└── SpringBootDockerApplicationTests.java
|
└── SpringBootDockerApplicationTests.java
|
||||||
|
|
||||||
15 directories, 9 files
|
15 directories, 7 files
|
||||||
```
|
```
|
||||||
|
|
||||||
The `src/main/java` directory contains your project's source code, the `src/test/java` directory
|
The `src/main/java` directory contains your project's source code, the `src/test/java` directory
|
||||||
|
|
Loading…
Reference in New Issue