mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
Build docker files from root dir
This commit is contained in:
parent
73979ee67f
commit
70d59c5b3c
2 changed files with 9 additions and 7 deletions
|
|
@ -19,4 +19,4 @@ MONGO_URI="mongodb://127.0.0.1:27017/chatgpt-clone"
|
|||
# Leave blank if you don't want them.
|
||||
OPENAI_KEY=
|
||||
CHATGPT_TOKEN=
|
||||
BING_TOKEN=
|
||||
BING_TOKEN=
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ version: "2"
|
|||
services:
|
||||
client:
|
||||
image: react-client
|
||||
build: ./client
|
||||
restart: always
|
||||
ports:
|
||||
- "3080:80"
|
||||
|
|
@ -15,13 +16,14 @@ services:
|
|||
- webappnetwork
|
||||
api:
|
||||
image: node-api
|
||||
build: ./api
|
||||
restart: always
|
||||
env_file:
|
||||
- ./api/.env
|
||||
environment:
|
||||
- "PORT=3080"
|
||||
- "MONGO_URI=mongodb://mongodb:27017/chatgpt-clone"
|
||||
- "OPENAI_KEY="
|
||||
- "CHATGPT_TOKEN="
|
||||
- "BING_TOKEN="
|
||||
- HOST=0.0.0.0
|
||||
- NODE_ENV=production
|
||||
- MONGO_URI=mongodb://mongodb:27017/chatgpt-clone
|
||||
ports:
|
||||
- "9000:3080"
|
||||
volumes:
|
||||
|
|
@ -45,4 +47,4 @@ services:
|
|||
|
||||
networks:
|
||||
webappnetwork:
|
||||
driver: bridge
|
||||
driver: bridge
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue