matrix_chatgpt_bot/compose.yaml

32 lines
795 B
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
2023-03-10 01:26:45 +00:00
restart: always
# 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
# api:
# # bing api
2023-05-20 00:34:03 +00:00
# image: ghcr.io/waylaidwanderer/node-chatgpt-api:latest
2023-03-10 15:45:38 +00:00
# container_name: node-chatgpt-api
# restart: always
# volumes:
# - ./settings.js:/var/chatgpt-api/settings.js
# networks:
# - matrix_network
2023-03-10 01:26:45 +00:00
2023-03-10 15:45:38 +00:00
networks:
2023-03-10 16:13:40 +00:00
matrix_network: