Skip to content

Commit 2c4fffe

Browse files
authored
Fix minor typos (#22419)
## Description Fixed minor typos to improve readability.
1 parent 12698a8 commit 2c4fffe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/manuals/compose/how-tos/profiles.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ services:
111111
# Only start backend and db
112112
$ docker compose up -d
113113
114-
# This runs db-migrations (and,if necessary, start db)
115-
# by implicitly enabling the profiles `tools`
114+
# This runs db-migrations (and, if necessary, start db)
115+
# by implicitly enabling the profiles "tools"
116116
$ docker compose run db-migrations
117117
```
118118

@@ -150,7 +150,7 @@ services:
150150
$ docker compose up -d
151151
152152
# Start mock-backend (and, if necessary, db)
153-
# by implicitly enabling profiles `dev`
153+
# by implicitly enabling profiles "dev"
154154
$ docker compose up -d mock-backend
155155
156156
# This fails because profiles "dev" is not enabled

content/manuals/compose/how-tos/startup-order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Compose waits for healthchecks to pass on dependencies marked with `service_heal
5555

5656
`restart: true` ensures that if `db` is updated or restarted due to an explicit Compose operation, for example `docker compose restart`, the `web` service is also restarted automatically, ensuring it re-establishes connections or dependencies correctly.
5757

58-
The healthcheck for the `db` service uses the `pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}'` command to check if the PostgreSQL database is ready. The service is retried every 10 seconds, up to 5 times.
58+
The healthcheck for the `db` service uses the `pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}` command to check if the PostgreSQL database is ready. The service is retried every 10 seconds, up to 5 times.
5959

6060
Compose also removes services in dependency order. `web` is removed before `db` and `redis`.
6161

0 commit comments

Comments
 (0)