From fbacec6a47ff709a1e3025a7463f16df9e463b51 Mon Sep 17 00:00:00 2001 From: Kevin Albertson Date: Sun, 29 Sep 2024 19:46:40 -0400 Subject: [PATCH] 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. --- .../docker-concepts/building-images/multi-stage-builds.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/content/get-started/docker-concepts/building-images/multi-stage-builds.md b/content/get-started/docker-concepts/building-images/multi-stage-builds.md index 6ddc5522e2..f2c90777bb 100644 --- a/content/get-started/docker-concepts/building-images/multi-stage-builds.md +++ b/content/get-started/docker-concepts/building-images/multi-stage-builds.md @@ -75,8 +75,6 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create ```plaintext spring-boot-docker - ├── Dockerfile - ├── Dockerfile.multi ├── HELP.md ├── mvnw ├── mvnw.cmd @@ -86,7 +84,7 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create │ ├── java │ │ └── com │ │ └── example - │ │ └── springbootdocker + │ │ └── spring_boot_docker │ │ └── SpringBootDockerApplication.java │ └── resources │ ├── application.properties @@ -96,10 +94,10 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create └── java └── com └── example - └── springbootdocker + └── spring_boot_docker └── 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