From c36cbb21e3a4f439c3c9cd63c7daa8284dc42ec9 Mon Sep 17 00:00:00 2001 From: Loredana Crusoveanu Date: Wed, 22 Jun 2022 21:51:51 +0300 Subject: [PATCH] fix readme links for docker articles --- docker-modules/README.md | 9 --------- docker-modules/docker-caching/README.md | 3 +++ docker-modules/docker-compose/README.md | 4 ++++ docker-modules/{ => docker-compose}/docker-compose.yml | 0 .../docker-include-outside-build-context/README.md | 3 +++ docker-modules/docker-sample-app/README.md | 3 +++ docker-modules/docker-spring-boot/README.md | 1 + docker-modules/dockerfile-with-git/README.md | 3 +++ 8 files changed, 17 insertions(+), 9 deletions(-) delete mode 100644 docker-modules/README.md create mode 100644 docker-modules/docker-caching/README.md create mode 100644 docker-modules/docker-compose/README.md rename docker-modules/{ => docker-compose}/docker-compose.yml (100%) create mode 100644 docker-modules/docker-include-outside-build-context/README.md create mode 100644 docker-modules/docker-sample-app/README.md create mode 100644 docker-modules/dockerfile-with-git/README.md diff --git a/docker-modules/README.md b/docker-modules/README.md deleted file mode 100644 index f5daa19b08..0000000000 --- a/docker-modules/README.md +++ /dev/null @@ -1,9 +0,0 @@ -## Relevant Articles: - -- [Introduction to Docker Compose](https://www.baeldung.com/ops/docker-compose) -- [Reusing Docker Layers with Spring Boot](https://www.baeldung.com/docker-layers-spring-boot) -- [How To Configure Java Heap Size Inside a Docker Container](https://www.baeldung.com/ops/docker-jvm-heap-size) -- [Dockerfile Strategies for Git](https://www.baeldung.com/ops/dockerfile-git-strategies) -- [How to Get Docker-Compose to Always Use the Latest Image](https://www.baeldung.com/ops/docker-compose-latest-image) -- [How to Include Files Outside of Docker’s Build Context](https://www.baeldung.com/ops/docker-include-files-outside-build-context) -- [Caching Maven Dependencies with Docker](https://www.baeldung.com/ops/docker-cache-maven-dependencies) diff --git a/docker-modules/docker-caching/README.md b/docker-modules/docker-caching/README.md new file mode 100644 index 0000000000..d985210683 --- /dev/null +++ b/docker-modules/docker-caching/README.md @@ -0,0 +1,3 @@ +## Relevant Articles: + +- [Caching Maven Dependencies with Docker](https://www.baeldung.com/ops/docker-cache-maven-dependencies) diff --git a/docker-modules/docker-compose/README.md b/docker-modules/docker-compose/README.md new file mode 100644 index 0000000000..243e81fc80 --- /dev/null +++ b/docker-modules/docker-compose/README.md @@ -0,0 +1,4 @@ +## Relevant Articles: + +- [Introduction to Docker Compose](https://www.baeldung.com/ops/docker-compose) + diff --git a/docker-modules/docker-compose.yml b/docker-modules/docker-compose/docker-compose.yml similarity index 100% rename from docker-modules/docker-compose.yml rename to docker-modules/docker-compose/docker-compose.yml diff --git a/docker-modules/docker-include-outside-build-context/README.md b/docker-modules/docker-include-outside-build-context/README.md new file mode 100644 index 0000000000..55cc564163 --- /dev/null +++ b/docker-modules/docker-include-outside-build-context/README.md @@ -0,0 +1,3 @@ +## Relevant Articles: + +- [How to Include Files Outside of Docker’s Build Context](https://www.baeldung.com/ops/docker-include-files-outside-build-context) \ No newline at end of file diff --git a/docker-modules/docker-sample-app/README.md b/docker-modules/docker-sample-app/README.md new file mode 100644 index 0000000000..d35abbc7e5 --- /dev/null +++ b/docker-modules/docker-sample-app/README.md @@ -0,0 +1,3 @@ +## Relevant Articles: + +- [How to Get Docker-Compose to Always Use the Latest Image](https://www.baeldung.com/ops/docker-compose-latest-image) \ No newline at end of file diff --git a/docker-modules/docker-spring-boot/README.md b/docker-modules/docker-spring-boot/README.md index 0fc9d2b6b5..7b16790783 100644 --- a/docker-modules/docker-spring-boot/README.md +++ b/docker-modules/docker-spring-boot/README.md @@ -2,3 +2,4 @@ - [Creating Docker Images with Spring Boot](https://www.baeldung.com/spring-boot-docker-images) - [Starting Spring Boot Application in Docker With Profile](https://www.baeldung.com/spring-boot-docker-start-with-profile) +- [Reusing Docker Layers with Spring Boot](https://www.baeldung.com/docker-layers-spring-boot) diff --git a/docker-modules/dockerfile-with-git/README.md b/docker-modules/dockerfile-with-git/README.md new file mode 100644 index 0000000000..7e27328678 --- /dev/null +++ b/docker-modules/dockerfile-with-git/README.md @@ -0,0 +1,3 @@ +## Relevant Articles: + +- [Dockerfile Strategies for Git](https://www.baeldung.com/ops/dockerfile-git-strategies)