Update README.md

This commit is contained in:
2023-04-27 13:28:29 +03:00
parent 00233afdff
commit dfc3314caa
2 changed files with 5 additions and 4 deletions

3
.gitignore vendored
View File

@@ -1,2 +1,3 @@
.env
data
data
.idea

View File

@@ -5,7 +5,7 @@ Second version of [mention-all-the-bot](https://github.com/pischule/mention-all-
## how to run this
```shell
$ cat > docker-compose.yml << EOL
$ cat << EOF > docker-compose.yml
services:
bot:
image: ghcr.io/pischule/go-mention-all-bot:master
@@ -14,6 +14,6 @@ services:
- ./data:/app/data
environment:
TELEGRAM_TOKEN: "<your-bot-token>"
EOL
EOF
$ docker compose up -d
```
```