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

@ -3,6 +3,7 @@ version: "2"
services: services:
client: client:
image: react-client image: react-client
build: ./client
restart: always restart: always
ports: ports:
- "3080:80" - "3080:80"
@ -15,13 +16,14 @@ services:
- webappnetwork - webappnetwork
api: api:
image: node-api image: node-api
build: ./api
restart: always restart: always
env_file:
- ./api/.env
environment: environment:
- "PORT=3080" - HOST=0.0.0.0
- "MONGO_URI=mongodb://mongodb:27017/chatgpt-clone" - NODE_ENV=production
- "OPENAI_KEY=" - MONGO_URI=mongodb://mongodb:27017/chatgpt-clone
- "CHATGPT_TOKEN="
- "BING_TOKEN="
ports: ports:
- "9000:3080" - "9000:3080"
volumes: volumes: