From 00233afdff2e25cb137e4dc6be5859aa8d6d043a Mon Sep 17 00:00:00 2001 From: Maksim Pischulenok Date: Wed, 26 Apr 2023 11:46:21 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8216a4b..aadedaa 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,16 @@ Second version of [mention-all-the-bot](https://github.com/pischule/mention-all- ## how to run this -```bash -$ echo 'version: "2.0" +```shell +$ cat > docker-compose.yml << EOL services: bot: - image: pischule/go-mention-all-bot + image: ghcr.io/pischule/go-mention-all-bot:master restart: unless-stopped volumes: - ./data:/app/data environment: - TELEGRAM_TOKEN: "${TELEGRAM_TOKEN}"' > docker-compose.yml -$ echo 'TELEGRAM_TOKEN=' > .env + TELEGRAM_TOKEN: "" +EOL $ docker compose up -d ```