forked from pedrorito/ChatGPTSlackBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
38 lines (35 loc) · 952 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
##
## ---------------------------------
## | S L A C K G P T - D O C K E R |
## ---------------------------------
##
## Container based media tools configuration
##
## -- DO NOT EDIT THIS FILE --
##
## Configuration items for this file are taken from the .env file
##
## Have docker-compose.yml and .env in the same directory to launch the stack
version: '3.9'
######################
# SERVICES TO LAUNCH #
######################
services:
# ----------------------------------------
# chatgptslackbot
# chatgptslackbot
# ----------------------------------------
chatgptslackbot:
build:
context: ./
image: chatgptslackbot
restart: always
container_name: chatgptslackbot
environment:
- SLACK_SIGNING_SECRET=${SLACK_SIGNING_SECRET}
- SLACK_BOT_TOKEN=${SLACK_BOT_TOKEN}
- OPENAI_API_KEY=${OPENAI_API_KEY}
ports:
- 4000:4000
labels:
com.centurylinklabs.watchtower.enable: "false"