From a6aeb2c34b50792d5a054aca321981810c5f4618 Mon Sep 17 00:00:00 2001 From: Makoto Oda Date: Fri, 11 Jun 2021 19:21:02 +0900 Subject: [PATCH] Update develop.md (#12951) `e` missed --- language/java/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/java/develop.md b/language/java/develop.md index 40c7cc6ffd..e450306d6c 100644 --- a/language/java/develop.md +++ b/language/java/develop.md @@ -49,7 +49,7 @@ $ docker run -it --rm -d -v mysql_data:/var/lib/mysql \ Okay, now that we have a running MySQL, let’s update our Dockerfile to activate the MySQL Spring profile defined in the application and switch from an in-memory H2 database to the MySQL server we just created. -We only need to add the MySQL profil as an argument to the `CMD` definition. +We only need to add the MySQL profile as an argument to the `CMD` definition. ```dockerfile CMD ["./mvnw", "spring-boot:run", "-Dspring-boot.run.profiles=mysql"]