DocsGPT/docker-compose.yaml

16 lines
214 B
YAML
Raw Normal View History

2023-02-24 17:04:37 +00:00
version: "3.9"
services:
frontend:
build: ./frontend
2023-03-01 14:16:11 +00:00
environment:
- API_HOST=http://backend:5001
2023-02-24 17:04:37 +00:00
ports:
- "5173:5173"
backend:
build: ./application
ports:
- "5001:5001"