25 lines
423 B
YAML
25 lines
423 B
YAML
version: '3'
|
|
services:
|
|
bot-chatgpt:
|
|
image: matrix-chain
|
|
env_file:
|
|
- ./.env
|
|
command: python3 bot_chatgpt.py
|
|
|
|
bot-db:
|
|
image: matrix-chain
|
|
env_file:
|
|
- ./.env
|
|
command: python3 bot_db.py
|
|
|
|
bot-whisper:
|
|
image: matrix-chain
|
|
env_file:
|
|
- ./.env
|
|
command: python3 bot_whisper.py
|
|
|
|
bot-tts:
|
|
image: matrix-chain
|
|
env_file:
|
|
- ./.env
|
|
command: python3 bot_tts.py |