Update develop.md (#12951)

`e` missed
This commit is contained in:
Makoto Oda 2021-06-11 19:21:02 +09:00 committed by GitHub
parent 0b239bddde
commit a6aeb2c34b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ $ docker run -it --rm -d -v mysql_data:/var/lib/mysql \
Okay, now that we have a running MySQL, lets 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"]