dix: mapear puertos en docker compose

This commit is contained in:
Alexis
2026-05-13 10:16:34 +02:00
parent d8fa8031b6
commit 9a43059b60
+30 -10
View File
@@ -3,9 +3,9 @@ services:
backend: backend:
build: ./backend build: ./backend
container_name: orcid-backend container_name: orcid-backend
restart: always restart: unless-stopped
ports: ports:
- "8000:8000" - "0.0.0.0:8072:8000"
env_file: env_file:
- ./backend/.env - ./backend/.env
environment: environment:
@@ -17,28 +17,43 @@ services:
condition: service_healthy condition: service_healthy
redis: redis:
condition: service_started condition: service_started
read_only: true
tmpfs:
- /tmp
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
healthcheck:
test: ["CMD", "curl", "-fsS", "http://127.0.0.1:8000/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s
frontend: frontend:
build: ./frontend build: ./frontend
container_name: orcid-frontend container_name: orcid-frontend
restart: always restart: unless-stopped
ports: ports:
- "5173:5173" - "0.0.0.0:8073:5173"
depends_on: depends_on:
- backend - backend
env_file: env_file:
- ./frontend/.env - ./frontend/.env
security_opt:
- no-new-privileges:true
db: db:
image: postgres:16 image: postgres:16
container_name: orcid-postgres container_name: orcid-postgres
restart: always restart: unless-stopped
environment: environment:
POSTGRES_USER: postgres POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres POSTGRES_PASSWORD: postgres
POSTGRES_DB: orcid_db POSTGRES_DB: orcid_db
ports: expose:
- "5432:5432" - "5432"
volumes: volumes:
- postgres_data:/var/lib/postgresql/data - postgres_data:/var/lib/postgresql/data
healthcheck: healthcheck:
@@ -46,13 +61,18 @@ services:
interval: 2s interval: 2s
timeout: 3s timeout: 3s
retries: 20 retries: 20
security_opt:
- no-new-privileges:true
redis: redis:
image: redis:7 image: redis:7
container_name: orcid-redis container_name: orcid-redis
restart: always restart: unless-stopped
ports: command: ["redis-server", "--save", "60", "1", "--loglevel", "warning"]
- "6379:6379" expose:
- "6379"
security_opt:
- no-new-privileges:true
volumes: volumes:
postgres_data: postgres_data: