From d1d2ac82f276d0d5be57e50208a8d076006afe1a Mon Sep 17 00:00:00 2001 From: nightnoryu Date: Sat, 26 Apr 2025 12:04:09 +0300 Subject: [PATCH] Replace docker-compose with `docker compose` --- README.md | 2 +- bin/a3acompose | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bcd04ce..1076b66 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ services: OWNER_CHAT_ID: 123 # ID of your chat with your bot ``` -And you're set! Use the provided `docker-compose` wrapper script to manage the application: +And you're set! Use the provided `docker compose` wrapper script to manage the application: ```shell # Start diff --git a/bin/a3acompose b/bin/a3acompose index 3e251ad..bc286fc 100755 --- a/bin/a3acompose +++ b/bin/a3acompose @@ -7,6 +7,6 @@ PROJECT_NAME=$(basename "$WORK_DIR") pushd "$WORK_DIR" >/dev/null -docker-compose -p "$PROJECT_NAME" "$@" +docker compose -p "$PROJECT_NAME" "$@" popd >/dev/null