Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/guides/java/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ services:
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker-compose up`.
# a password of your choosing to it before running `docker compose up`.
# depends_on:
# db:
# condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion content/guides/nodejs/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ services:
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker-compose up`.
# a password of your choosing to it before running `docker compose up`.
# depends_on:
# db:
# condition: service_healthy
Expand Down
6 changes: 3 additions & 3 deletions content/guides/nodejs/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ You can use containers to set up local services, like a database. In this sectio
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker-compose up`.
# a password of your choosing to it before running `docker compose up`.

depends_on:
db:
Expand Down Expand Up @@ -128,7 +128,7 @@ You can use containers to set up local services, like a database. In this sectio
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker-compose up`.
# a password of your choosing to it before running `docker compose up`.

depends_on:
db:
Expand Down Expand Up @@ -188,7 +188,7 @@ You can use containers to set up local services, like a database. In this sectio
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker-compose up`.
# a password of your choosing to it before running `docker compose up`.

depends_on:
db:
Expand Down