From 198bb3293755c85d181bfc6f4100aa9cb0debcfc Mon Sep 17 00:00:00 2001 From: Raphael Cazer <71472751+raaphiixx@users.noreply.github.com> Date: Fri, 22 Nov 2024 12:23:18 +0000 Subject: [PATCH 1/2] Little parts of text outdated for 2024 Only 3 changes --- .../the-basics/what-is-docker-compose.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md b/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md index 5126fba3646..3031225b90b 100644 --- a/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md +++ b/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md @@ -59,12 +59,13 @@ Follow the instructions to run the to-do list app on your system. When you run this command, you should see an output like this: ```console - [+] Running 4/4 - ✔ app 3 layers [⣿⣿⣿] 0B/0B Pulled 7.1s + [+] Running 5/5 + ✔ app 3 layers [⣿⣿⣿] 0B/0B Pulled 7.1s ✔ e6f4e57cc59e Download complete 0.9s ✔ df998480d81d Download complete 1.0s ✔ 31e174fedd23 Download complete 2.5s - [+] Running 2/4 + ✔ 43c47a581c29 Download complete 2.0s + [+] Running 4/4 ⠸ Network todo-list-app_default Created 0.3s ⠸ Volume "todo-list-app_todo-mysql-data" Created 0.3s ✔ Container todo-list-app-app-1 Started 0.3s @@ -102,7 +103,7 @@ Since this application was started using Docker Compose, it's easy to tear it al You'll see output similar to the following: ```console - [+] Running 2/2 + [+] Running 3/3 ✔ Container todo-list-app-mysql-1 Removed 2.9s ✔ Container todo-list-app-app-1 Removed 0.1s ✔ Network todo-list-app_default Removed 0.1s @@ -117,6 +118,10 @@ Since this application was started using Docker Compose, it's easy to tear it al > ```console > docker compose down --volumes > ``` + > ```console + > [+] Running 1/0 + > ✔ Volume todo-list-app_todo-mysql-data Removed + > ``` 2. Alternatively, you can use the Docker Desktop GUI to remove the containers by selecting the application stack and selecting the **Delete** button. From 69998813689614d9dcc7bbf08fa5582d58ea8096 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:15:31 +0000 Subject: [PATCH 2/2] Update content/get-started/docker-concepts/the-basics/what-is-docker-compose.md Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- .../docker-concepts/the-basics/what-is-docker-compose.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md b/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md index 3031225b90b..90b1db134f2 100644 --- a/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md +++ b/content/get-started/docker-concepts/the-basics/what-is-docker-compose.md @@ -117,8 +117,6 @@ Since this application was started using Docker Compose, it's easy to tear it al > > ```console > docker compose down --volumes - > ``` - > ```console > [+] Running 1/0 > ✔ Volume todo-list-app_todo-mysql-data Removed > ```