Build docker files from root dir

This commit is contained in:
Hyunggyu Jang 2023-03-13 22:45:02 +09:00
parent 73979ee67f
commit 70d59c5b3c
2 changed files with 9 additions and 7 deletions

View file

@ -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=

View file

@ -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