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:
Kevin Albertson 2024-09-29 19:46:40 -04:00
parent 099d2bfae1
commit fbacec6a47
1 changed files with 3 additions and 5 deletions

View File

@ -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