- Docker setup (Dockerfile.backend, Dockerfile.frontend, nginx, docker-compose) - Architecture overview with Mermaid sequence diagram - README with quick start and Docker instructions - Verify OpenAPI spec and ADR docs
21 lines
378 B
YAML
21 lines
378 B
YAML
services:
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile.backend
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- PORT=3000
|
|
- MOEX_BASE_URL=https://iss.moex.com/iss
|
|
- MOEX_RATE_LIMIT=10
|
|
|
|
frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile.frontend
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- backend
|