version: "3.8" services: postgres: image: postgres:15-alpine container_name: nocodb-db restart: unless-stopped environment: POSTGRES_USER: consultoria-as POSTGRES_PASSWORD: Aasi940812 POSTGRES_DB: nocodb volumes: - postgres_data:/var/lib/postgresql/data networks: - nocodb-network healthcheck: test: ["CMD-SHELL", "pg_isready -U consultoria-as -d nocodb"] interval: 10s timeout: 5s retries: 5 nocodb: image: nocodb/nocodb:latest container_name: nocodb restart: unless-stopped depends_on: postgres: condition: service_healthy environment: NC_DB: pg://postgres:5432?u=consultoria-as&p=Aasi940812&d=nocodb NC_AUTH_JWT_SECRET: tu-secreto-jwt-seguro-cambiar-esto NC_ADMIN_EMAIL: ialcarazsalazar@consultoria-as.com NC_ADMIN_PASSWORD: Aasi940812 volumes: - nocodb_data:/usr/app/data ports: - "8080:8080" networks: - nocodb-network volumes: postgres_data: nocodb_data: networks: nocodb-network: driver: bridge