matrix_chatgpt_bot/compose.yaml

32 lines
795 B
YAML
Raw Normal View History

2023-03-09 10:40:34 -05:00
services:
app:
2023-03-09 20:26:45 -05:00
image: hibobmaster/matrixchatgptbot:latest
2023-03-09 10:40:34 -05:00
container_name: matrix_chatgpt_bot
2023-03-09 20:26:45 -05:00
restart: always
# build:
# context: .
# dockerfile: ./Dockerfile
2023-04-09 22:52:18 -04:00
env_file:
- .env
2023-03-09 10:40:34 -05:00
volumes:
2023-04-09 22:52:18 -04: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 03:49:13 -04:00
# import_keys path
# - ./element-keys.txt:/app/element-keys.txt
2023-03-10 10:45:38 -05:00
networks:
- matrix_network
# api:
# # bing api
2023-05-19 20:34:03 -04:00
# image: ghcr.io/waylaidwanderer/node-chatgpt-api:latest
2023-03-10 10:45:38 -05:00
# container_name: node-chatgpt-api
# restart: always
# volumes:
# - ./settings.js:/var/chatgpt-api/settings.js
# networks:
# - matrix_network
2023-03-09 20:26:45 -05:00
2023-03-10 10:45:38 -05:00
networks:
2023-03-10 11:13:40 -05:00
matrix_network: