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