matrix_chatgpt_bot/compose.yaml

43 lines
1.0 KiB
YAML
Raw Normal View History

2023-03-09 15:40:34 +00:00
services:
app:
2023-03-10 01:26:45 +00:00
image: hibobmaster/matrixchatgptbot:latest
2023-03-09 15:40:34 +00:00
container_name: matrix_chatgpt_bot
restart: unless-stopped
2023-03-10 01:26:45 +00:00
# build:
# context: .
# dockerfile: ./Dockerfile
2023-04-10 02:52:18 +00:00
env_file:
- .env
2023-03-09 15:40:34 +00:00
volumes:
2023-04-10 02:52:18 +00:00
# use env file or config.json
# - ./config.json:/app/config.json
# use touch to create an empty file db, for persist database only
- ./db:/app/db
2023-04-20 07:49:13 +00:00
# import_keys path
# - ./element-keys.txt:/app/element-keys.txt
2023-03-10 15:45:38 +00:00
networks:
- matrix_network
2023-06-05 03:27:37 +00:00
api:
# ChatGPT and Bing API
image: hibobmaster/node-chatgpt-api:latest
container_name: node-chatgpt-api
restart: unless-stopped
volumes:
- ./settings.js:/app/settings.js
networks:
- matrix_network
2023-03-10 01:26:45 +00:00
# pandora:
2023-06-05 03:27:37 +00:00
# # ChatGPT Web
# image: pengzhile/pandora
# container_name: pandora
# restart: unless-stopped
# environment:
# - PANDORA_ACCESS_TOKEN=xxxxxxxxxxxxxx
# - PANDORA_SERVER=0.0.0.0:8008
# networks:
# - matrix_network
2023-03-10 15:45:38 +00:00
networks:
2023-03-10 16:13:40 +00:00
matrix_network: