From 230872c15b272312fff722d23d4945a6adcb5596 Mon Sep 17 00:00:00 2001 From: Bokyeom <79684339+k-kbk@users.noreply.github.com> Date: Thu, 27 Mar 2025 16:43:53 +0900 Subject: [PATCH 1/2] fix: replace docker-compose with docker compose CLI --- content/guides/java/containerize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/java/containerize.md b/content/guides/java/containerize.md index aa2e235e5c83..b3cbfff03783 100644 --- a/content/guides/java/containerize.md +++ b/content/guides/java/containerize.md @@ -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 From 7e771652d1320845cf946a8e093d90abd79b64e1 Mon Sep 17 00:00:00 2001 From: Bokyeom <79684339+k-kbk@users.noreply.github.com> Date: Thu, 27 Mar 2025 07:57:18 +0000 Subject: [PATCH 2/2] fix: replace docker-compose with docker compose CLI --- content/guides/nodejs/containerize.md | 2 +- content/guides/nodejs/develop.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/guides/nodejs/containerize.md b/content/guides/nodejs/containerize.md index bcff0d92a28b..0f54039de933 100644 --- a/content/guides/nodejs/containerize.md +++ b/content/guides/nodejs/containerize.md @@ -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 diff --git a/content/guides/nodejs/develop.md b/content/guides/nodejs/develop.md index 0d1afc4e69a3..0e892375182c 100644 --- a/content/guides/nodejs/develop.md +++ b/content/guides/nodejs/develop.md @@ -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: @@ -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: @@ -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: