You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/tutorials/tutorial-multi-container-app-mysql.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: ghogen
5
5
ms.author: ghogen
6
6
ms.service: vs-code
7
7
ms.topic: tutorial
8
-
ms.date: 08/28/2024
8
+
ms.date: 08/29/2024
9
9
# Under agreement with Docker Inc. to provide this content. Contact is: nebuk89. Mike Morton has context on MSFT side, but has moved on to another role.
10
10
11
11
#customer intent: As a developer, I want to create multi-container applications with MySQL and Docker Compose, so I can use the containers to scale my project in Visual Studio.
@@ -15,10 +15,10 @@ ms.date: 08/28/2024
15
15
16
16
This article describes how to create multi-container apps with [MySQL](https://dev.mysql.com/) and [Docker Compose](https://docs.docker.com/compose/). An app with multiple containers allows you to dedicate containers for specialized tasks, so each container can focus on a single task. There are many advantages to using multi-container apps:
17
17
18
-
- Separate containers allow you to manage APIs and front-end resources differently than databases
19
-
- Multiple containers let you version and update versions in isolation
20
-
- Local databases can be maintained in containers and managed services used for databases in production
21
-
- Multi-container apps are more efficient than running multiple processes with a process manager, which adds complexity to container startup/shutdown
18
+
- Separate containers allow you to manage APIs and front-end resources differently than databases.
19
+
- Multiple containers let you version and update versions in isolation.
20
+
- Local databases can be maintained in containers and managed services used for databases in production.
21
+
- Multi-container apps are more efficient than running multiple processes with a process manager, which adds complexity to container startup/shutdown.
22
22
23
23
In this tutorial, you:
24
24
@@ -411,7 +411,7 @@ Now you can try running your *docker-compose.yml* file.
411
411
412
412
1. Stop any running instances of your application and database.
413
413
414
-
# [VS Code](#tab/visual-studio)
414
+
# [Visual Studio Code](#tab/visual-studio-code)
415
415
416
416
Follow these steps in VS Code:
417
417
@@ -439,7 +439,7 @@ Now you can try running your *docker-compose.yml* file.
439
439
440
440
1. Start your multi-container app and all services.
441
441
442
-
# [VS Code](#tab/visual-studio)
442
+
# [Visual Studio Code](#tab/visual-studio-code)
443
443
444
444
Follow these steps in VS Code:
445
445
@@ -469,7 +469,7 @@ Now you can try running your *docker-compose.yml* file.
469
469
470
470
1. Review the logs for the running container.
471
471
472
-
# [VS Code](#tab/visual-studio)
472
+
# [Visual Studio Code](#tab/visual-studio-code)
473
473
474
474
Follow these steps in VS Code:
475
475
@@ -509,7 +509,7 @@ Now you can try running your *docker-compose.yml* file.
509
509
510
510
When you're done with the app and containers, you can remove them.
0 commit comments