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: generators/spring-boot/templates/README.md.jhi.spring-boot.ejs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -331,21 +331,21 @@ For more information, refer to the [Code quality page][].
331
331
332
332
### Docker Compose support
333
333
334
-
JHipster generates a number of docker-compose configuration files in the [<%- dockerServicesDir %>](<%- dockerServicesDir %>) folder to launch required third party services.
334
+
JHipster generates a number of Docker Compose configuration files in the [<%- dockerServicesDir %>](<%- dockerServicesDir %>) folder to launch required third party services.
335
335
336
-
For example, to start required services in docker containers, run:
336
+
For example, to start required services in Docker containers, run:
337
337
338
338
```
339
339
docker compose -f <%- dockerServicesDir %>services.yml up -d
340
340
```
341
341
342
-
To stop it and remove the containers, run:
342
+
To stop and remove the containers, run:
343
343
344
344
```
345
345
docker compose -f <%- dockerServicesDir %>services.yml down
346
346
```
347
347
348
-
[Spring Docker Compose Integration](https://docs.spring.io/spring-boot/reference/features/dev-services.html) is enable by default. Is possible to disable it in application.yml:
348
+
[Spring Docker Compose Integration](https://docs.spring.io/spring-boot/reference/features/dev-services.html) is enable by default. It's possible to disable it in application.yml:
349
349
350
350
```yaml
351
351
spring:
@@ -356,13 +356,13 @@ spring:
356
356
```
357
357
358
358
You can also fully dockerize your application and all the services that it depends on.
359
-
To achieve this, first build a docker image of your app by running:
359
+
To achieve this, first build a Docker image of your app by running:
360
360
361
361
```sh
362
362
npm run java:docker
363
363
```
364
364
365
-
Or build a arm64 docker image when using an arm64 processor os like MacOS with M1 processor family running:
365
+
Or build a arm64 Docker image when using an arm64 processor os like MacOS with M1 processor family running:
366
366
367
367
```sh
368
368
npm run java:docker:arm64
@@ -374,7 +374,7 @@ Then run:
374
374
docker compose -f <%- dockerServicesDir %>app.yml up -d
375
375
```
376
376
377
-
For more information refer to [Using Docker and Docker-Compose][], this page also contains information on the docker-compose sub-generator (`jhipster docker-compose`), which is able to generate docker configurations for one or several JHipster applications.
377
+
For more information refer to [Using Docker and Docker-Compose][], this page also contains information on the Docker Compose sub-generator (`jhipster docker-compose`), which is able to generate Docker configurations for one or several JHipster applications.
0 commit comments