Skip to content

Commit 0fe9a40

Browse files
authored
Improve Docker documentation in README (#27702)
1 parent a5c1f6d commit 0fe9a40

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

generators/spring-boot/templates/README.md.jhi.spring-boot.ejs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -331,21 +331,21 @@ For more information, refer to the [Code quality page][].
331331
332332
### Docker Compose support
333333
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.
335335
336-
For example, to start required services in docker containers, run:
336+
For example, to start required services in Docker containers, run:
337337
338338
```
339339
docker compose -f <%- dockerServicesDir %>services.yml up -d
340340
```
341341
342-
To stop it and remove the containers, run:
342+
To stop and remove the containers, run:
343343
344344
```
345345
docker compose -f <%- dockerServicesDir %>services.yml down
346346
```
347347
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:
349349
350350
```yaml
351351
spring:
@@ -356,13 +356,13 @@ spring:
356356
```
357357
358358
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:
360360
361361
```sh
362362
npm run java:docker
363363
```
364364
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:
366366
367367
```sh
368368
npm run java:docker:arm64
@@ -374,7 +374,7 @@ Then run:
374374
docker compose -f <%- dockerServicesDir %>app.yml up -d
375375
```
376376
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.
378378
379379
## Continuous Integration (optional)
380380

0 commit comments

Comments
 (0)