Files
unisono/docker-compose.yaml
2025-10-10 12:48:06 +03:00

17 lines
241 B
YAML

version: '3.8'
services:
frontend:
build:
context: ./frontend
ports:
- "3000:80"
backend:
build:
context: ./backend
ports:
- "8000:8000"
environment:
- GEMINI_API_KEY=${GEMINI_API_KEY}