Git Product home page Git Product logo

Comments (4)

Mrs-Feathers avatar Mrs-Feathers commented on May 28, 2024

in postgres i figured out using

myapp-postgresql:
image: postgres:9.6.2
volumes:
- ../docker-postgresql-multiple-databases:/docker-entrypoint-initdb.d
environment:
- POSTGRES_MULTIPLE_DATABASES: db1,db2
- POSTGRES_USER: myapp
- POSTGRES_PASSWORD:

allows me to use different databases in postgres, but running a couple instances of the bot for each room cause a weird update error, and i wasn't able to do that list with CHAT_ID

from telegram-stats-bot.

mkdryden avatar mkdryden commented on May 28, 2024

Currently there is not a way to make one bot instance handle multiple chats. It was always on the list, but I've been quite busy lately and haven't had the chance to look at it (and there are some changes to the Telegram bot API I need to double check). As far as I know, there should be no problem in using the same Postgres, but you need to make sure each bot service is pointing to the correct database (with the POSTGRES_DB environment var), so you might have:

  bot1:
    image: mkdryden/telegram-stats-bot:master
    depends_on:
      - db
    environment:
      TZ: "America/Toronto"
      BOT_TOKEN: 111111111:AAA-MpBVQ7i2cIRfwedfsfesdg6webc0r-Y
      CHAT_ID: 0
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: password
      POSTGRES_HOST: db
      POSTGRES_DB: telegram_bot_1
  bot2:
    image: mkdryden/telegram-stats-bot:master
    depends_on:
      - db
    environment:
      TZ: "America/Toronto"
      BOT_TOKEN: 111111111:AAA-MpBVQ7i2cIRfwedfsfesdg6webc0r-Y
      CHAT_ID: 0
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: password
      POSTGRES_HOST: db
      POSTGRES_DB: telegram_bot_2

From your config, I assume you are using the init script from here. Postgres 9.6 is probably too old to be supported, I think you need at least 12. I didn't look that close, but the script will probably work with later versions too.

from telegram-stats-bot.

Mrs-Feathers avatar Mrs-Feathers commented on May 28, 2024

ive got this working, however using the same bot token for multiple bots gave weird results so i had to create a new bot for each of my 30 chats, which is a bit excessive but it works for now

from telegram-stats-bot.

Mrs-Feathers avatar Mrs-Feathers commented on May 28, 2024

as a side note, you get banned from botfather for 24 hours every 5th new bot you make within an hour. so a multiple group function would be a lot more efficient

from telegram-stats-bot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.