157 lines
3.9 KiB
YAML
157 lines
3.9 KiB
YAML
# docker-compose.yml
|
|
# Docker Comose para entorno deproducción o production.
|
|
|
|
services:
|
|
|
|
nginx-proxy-manager:
|
|
image: jc21/nginx-proxy-manager:latest
|
|
container_name: nginx-proxy-manager
|
|
restart: unless-stopped
|
|
depends_on:
|
|
suitecoffee-app:
|
|
condition: service_healthy
|
|
suitecoffee-auth:
|
|
condition: service_healthy
|
|
ports:
|
|
- "80:80" # HTTP público
|
|
- "81:81" # UI de administración NPM
|
|
- "443:443" # HTTPS público
|
|
volumes:
|
|
- npm_data:/data # config + DB (SQLite)
|
|
- npm_letsencrypt:/etc/letsencrypt
|
|
networks:
|
|
- suitecoffee-net
|
|
|
|
suitecoffee-app:
|
|
container_name: suitecoffee-app
|
|
depends_on:
|
|
suitecoffee-db:
|
|
condition: service_healthy
|
|
suitecoffee-tenants:
|
|
condition: service_healthy
|
|
build:
|
|
context: ./services/app
|
|
dockerfile: Dockerfile.development
|
|
volumes:
|
|
- ./services/app:/app
|
|
env_file:
|
|
- ./services/app/.env.development
|
|
environment:
|
|
- NODE_ENV=${NODE_ENV}
|
|
command: npm run start
|
|
healthcheck:
|
|
# IMPORTANTE: asegurate de tener curl instalado en la imagen de app (ver nota abajo)
|
|
test: ["CMD-SHELL", "curl -fsS http://localhost:${APP_DOCKER_PORT}/health || exit 1"]
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 10
|
|
start_period: 20s
|
|
restart: unless-stopped
|
|
networks:
|
|
- suitecoffee-net
|
|
|
|
suitecoffee-auth:
|
|
container_name: suitecoffee-auth
|
|
depends_on:
|
|
suitecoffee-db:
|
|
condition: service_healthy
|
|
build:
|
|
context: ./services/auth
|
|
dockerfile: Dockerfile.development
|
|
volumes:
|
|
- ./services/auth:/app
|
|
env_file:
|
|
- ./services/auth/.env.development
|
|
environment:
|
|
- NODE_ENV=${NODE_ENV}
|
|
command: npm run start
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -fsS http://localhost:${AUTH_DOCKER_PORT}/health || exit 1"]
|
|
interval: 10s
|
|
timeout: 3s
|
|
retries: 10
|
|
start_period: 15s
|
|
networks:
|
|
- suitecoffee-net
|
|
|
|
suitecoffee-db:
|
|
image: postgres:16
|
|
container_name: suitecoffee-db
|
|
environment:
|
|
POSTGRES_DB: ${DB_NAME}
|
|
POSTGRES_USER: ${DB_USER}
|
|
POSTGRES_PASSWORD: ${DB_PASS}
|
|
volumes:
|
|
- suitecoffee-data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ${DB_USER} -d ${DB_NAME}"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 20
|
|
start_period: 10s
|
|
networks:
|
|
- suitecoffee-net
|
|
|
|
suitecoffee-tenants:
|
|
image: postgres:16
|
|
container_name: suitecoffee-tenants
|
|
environment:
|
|
POSTGRES_DB: ${TENANTS_DB_NAME}
|
|
POSTGRES_USER: ${TENANTS_DB_USER}
|
|
POSTGRES_PASSWORD: ${TENANTS_DB_PASS}
|
|
volumes:
|
|
- tenants-data:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ${TENANTS_DB_USER} -d ${TENANTS_DB_NAME}"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 20
|
|
start_period: 10s
|
|
networks:
|
|
- suitecoffee-net
|
|
|
|
suitecoffee-dbeaver:
|
|
image: dbeaver/cloudbeaver:latest
|
|
container_name: suitecoffee-dbeaver
|
|
depends_on:
|
|
suitecoffee-tenants:
|
|
condition: service_healthy
|
|
suitecoffee-db:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8978:8978"
|
|
volumes:
|
|
- dbeaver_logs:/opt/cloudbeaver/logs
|
|
- dbeaver_workspace:/opt/cloudbeaver/workspace
|
|
networks:
|
|
- suitecoffee-net
|
|
|
|
# suitecoffee-adminer:
|
|
# image: adminer:latest
|
|
# container_name: suitecoffee-adminer
|
|
# restart: unless-stopped
|
|
# ports:
|
|
# - "8080:8080"
|
|
# depends_on:
|
|
# suitecoffee-tenants:
|
|
# condition: service_healthy
|
|
# suitecoffee-db:
|
|
# condition: service_healthy
|
|
# networks:
|
|
# - suitecoffee-net
|
|
|
|
volumes:
|
|
tenants-data:
|
|
suitecoffee-data:
|
|
npm_data:
|
|
npm_letsencrypt:
|
|
dbeaver_logs:
|
|
dbeaver_workspace:
|
|
|
|
networks:
|
|
suitecoffee-net:
|
|
driver: bridge |