9d8db59825
- Changed CORS allowed origin from localhost:5000 to localhost:5140 - Updated docker-compose.override.yml port mapping from 5000:8080 to 5140:8080 - Aligns local development port with staging (myai.easysoft.ro) and production (myai.ro) Caddy reverse proxy configuration on port 5140
55 lines
1015 B
YAML
55 lines
1015 B
YAML
# Local development overrides — auto-merged by "docker compose up".
|
|
# Do NOT paste this into Portainer. It only adds build context, port mappings,
|
|
# and env_file loading on top of docker-compose.yml.
|
|
|
|
services:
|
|
rag-api:
|
|
build:
|
|
context: ..
|
|
dockerfile: Apis/rag-api/Dockerfile
|
|
ports:
|
|
- "8081:8080"
|
|
env_file:
|
|
- .env
|
|
|
|
cv-matcher-api:
|
|
build:
|
|
context: ..
|
|
dockerfile: Apis/cv-matcher-api/Dockerfile
|
|
ports:
|
|
- "8082:8080"
|
|
env_file:
|
|
- .env
|
|
|
|
api:
|
|
build:
|
|
context: ..
|
|
dockerfile: Apis/api/Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
env_file:
|
|
- .env
|
|
|
|
cv-cleanup-job:
|
|
build:
|
|
context: ..
|
|
dockerfile: Jobs/cv-cleanup-job/Dockerfile
|
|
env_file:
|
|
- .env
|
|
|
|
cv-search-job:
|
|
build:
|
|
context: ..
|
|
dockerfile: Jobs/cv-search-job/Dockerfile
|
|
env_file:
|
|
- .env
|
|
|
|
web:
|
|
build:
|
|
context: ..
|
|
dockerfile: web/Dockerfile
|
|
ports:
|
|
- "5140:8080"
|
|
env_file:
|
|
- .env
|