From 2994bd2da6a678dcc7caec66ec2956b2f465dd7d Mon Sep 17 00:00:00 2001 From: Nick Santos Date: Thu, 2 Sep 2021 10:30:34 -0400 Subject: [PATCH] docs: add a pointer to the spring-boot-layer-index --- README.md | 6 ++++-- test/test.sh | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6357113..70d1e87 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,6 @@ your project for live updates. ## Other Configurations -- [3-recommended](3-recommended): The recommended setup from an earlier version - of this guide. - [101-jib](101-jib): An example of how to integrate Tilt with the [Jib Java image builder](https://github.com/GoogleContainerTools/jib) - [102-jib-live-update](102-jib-live-update): An example of how to use @@ -36,6 +34,10 @@ your project for live updates. - [201-quarkus-live-update](201-quarkus-live-update): An example of how to use live_update with [Quarkus](https://quarkus.io/), a container-first, hot-reloading framework for writing Java applications. +- [401-spring-boot-layertools](401-spring-boot-layertools): An example of how to + further optimize the Spring Boot image with the latest recommendations from + [the Spring Boot Docker + guide](https://github.com/spring-guides/top-spring-boot-docker#spring-boot-layer-index). ## License diff --git a/test/test.sh b/test/test.sh index 84c15bf..6609c58 100755 --- a/test/test.sh +++ b/test/test.sh @@ -24,3 +24,7 @@ tilt down --file 3-unpacked/Tiltfile echo "Testing 4-recommended" tilt ci --file 4-recommended/Tiltfile tilt down --file 4-recommended/Tiltfile + +echo "Testing 401-spring-boot-layertools" +tilt ci --file 401-spring-boot-layertools/Tiltfile +tilt down --file 401-spring-boot-layertools/Tiltfile