mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-03 23:15:37 +00:00
16 lines
214 B
YAML
16 lines
214 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
frontend:
|
|
build: ./frontend
|
|
environment:
|
|
- API_HOST=http://backend:5001
|
|
ports:
|
|
- "5173:5173"
|
|
|
|
backend:
|
|
build: ./application
|
|
ports:
|
|
- "5001:5001"
|
|
|