{
  "manifest_version": "1.0.0",
  "template": {
    "id": "964bf5a9-1e34-44d0-9624-8ba4a823c170",
    "slug": "nocodb-railway-template",
    "name": "NocoDB",
    "description": "Airtable Alternative. The no-code database with Postgres, Redis & Worker",
    "url": "https://railway.com/deploy/nocodb-railway-template",
    "upstream": {
      "image": "nocodb/nocodb:2026.08.0"
    }
  },
  "services": [
    {
      "name": "nocodb",
      "source": {
        "image": "nocodb/nocodb:2026.08.0"
      },
      "needs_volume": true,
      "volume_mount_path": "/usr/app/data",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2.1"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "nocodb-worker",
      "source": {
        "image": "nocodb/nocodb:2026.08.0"
      },
      "needs_volume": true,
      "volume_mount_path": "/usr/app/data",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "nocodb",
      "description": "Health-check target port",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "DATABASE_URL",
      "service": "nocodb",
      "description": "Metadata store connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_REDIS_URL",
      "service": "nocodb",
      "description": "Cache, pub/sub and job queue",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_S3_REGION",
      "service": "nocodb",
      "description": "Attachment bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NODE_OPTIONS",
      "service": "nocodb",
      "description": "Cap Node heap to container limit",
      "secret": false,
      "strategy": "default",
      "default": "--max-old-space-size=4096"
    },
    {
      "key": "NC_PUBLIC_URL",
      "service": "nocodb",
      "description": "Public base URL for links and webhooks",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "NC_ADMIN_EMAIL",
      "service": "nocodb",
      "description": "First super-admin email",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.com"
    },
    {
      "key": "NC_S3_ENDPOINT",
      "service": "nocodb",
      "description": "Object storage endpoint",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_DISABLE_TELE",
      "service": "nocodb",
      "description": "Disable usage telemetry",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_S3_ACCESS_KEY",
      "service": "nocodb",
      "description": "Object storage access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_ADMIN_PASSWORD",
      "service": "nocodb",
      "description": "First super-admin password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "NC_S3_BUCKET_NAME",
      "service": "nocodb",
      "description": "Attachment bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_AUTH_JWT_SECRET",
      "service": "nocodb",
      "description": "Signs user sessions",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "NC_S3_ACCESS_SECRET",
      "service": "nocodb",
      "description": "Object storage secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_SECURE_ATTACHMENTS",
      "service": "nocodb",
      "description": "Serve attachments as signed URLs",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_DISABLE_SUPPORT_CHAT",
      "service": "nocodb",
      "description": "Disable third-party support widget",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_CONNECTION_ENCRYPT_KEY",
      "service": "nocodb",
      "description": "Encrypts external data-source credentials",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Standard Redis port",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Default ACL user created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Convenience alias of the generated password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Generated password for the default user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "REDIS_PUBLIC_URL",
      "service": "Redis",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Data directory, a subdirectory of the volume mount",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Private hostname, reachable only inside the project",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Standard PostgreSQL port",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "libpq alias of the superuser name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "libpq alias of the default database",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "libpq alias of the superuser password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Default database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection string, use this from other services",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Superuser created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "Validity window of the generated self-signed TLS certificate",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Generated superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "DATABASE_PUBLIC_URL",
      "service": "Postgres",
      "description": "Public connection string over the TCP proxy, for external tools",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Grace period for in-flight connections on redeploy",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "nocodb-worker",
      "description": "Internal listen port",
      "secret": false,
      "strategy": "default",
      "default": "8080"
    },
    {
      "key": "DATABASE_URL",
      "service": "nocodb-worker",
      "description": "Metadata store connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_REDIS_URL",
      "service": "nocodb-worker",
      "description": "Required — worker will not start without it",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_S3_REGION",
      "service": "nocodb-worker",
      "description": "Attachment bucket region",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NODE_OPTIONS",
      "service": "nocodb-worker",
      "description": "Cap Node heap to container limit",
      "secret": false,
      "strategy": "default",
      "default": "--max-old-space-size=4096"
    },
    {
      "key": "NC_PUBLIC_URL",
      "service": "nocodb-worker",
      "description": "Public base URL for generated links",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "NC_S3_ENDPOINT",
      "service": "nocodb-worker",
      "description": "Object storage endpoint",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_DISABLE_TELE",
      "service": "nocodb-worker",
      "description": "Disable usage telemetry",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_S3_ACCESS_KEY",
      "service": "nocodb-worker",
      "description": "Object storage access key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_S3_BUCKET_NAME",
      "service": "nocodb-worker",
      "description": "Attachment bucket name",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_AUTH_JWT_SECRET",
      "service": "nocodb-worker",
      "description": "Must match the app service",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_S3_ACCESS_SECRET",
      "service": "nocodb-worker",
      "description": "Object storage secret key",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "NC_WORKER_CONTAINER",
      "service": "nocodb-worker",
      "description": "Run this container in worker role",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_SECURE_ATTACHMENTS",
      "service": "nocodb-worker",
      "description": "Serve attachments as signed URLs",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_DISABLE_SUPPORT_CHAT",
      "service": "nocodb-worker",
      "description": "Disable third-party support widget",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "NC_CONNECTION_ENCRYPT_KEY",
      "service": "nocodb-worker",
      "description": "Must match the app service",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "nocodb-railway-template"
      }
    },
    "cli": "railway deploy --template nocodb-railway-template",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "964bf5a9-1e34-44d0-9624-8ba4a823c170",
            "serializedConfig": {
              "buckets": {
                "2d6580ce-294c-4443-aff3-c238e7a998d5": {
                  "name": "nocodb-attachments"
                }
              },
              "services": {
                "4c1f3e06-60f2-48a3-9c5c-eda6328f9cca": {
                  "icon": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/nocodb.svg",
                  "name": "nocodb",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/api/v1/health",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "nocodb/nocodb:2026.08.0"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Health-check target port",
                      "defaultValue": "8080"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Metadata store connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "NC_REDIS_URL": {
                      "isOptional": false,
                      "description": "Cache, pub/sub and job queue",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "NC_S3_REGION": {
                      "isOptional": false,
                      "description": "Attachment bucket region",
                      "defaultValue": "${{nocodb-attachments.REGION}}"
                    },
                    "NODE_OPTIONS": {
                      "isOptional": false,
                      "description": "Cap Node heap to container limit",
                      "defaultValue": "--max-old-space-size=4096"
                    },
                    "NC_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "Public base URL for links and webhooks",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "NC_ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First super-admin email",
                      "defaultValue": "admin@example.com"
                    },
                    "NC_S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "Object storage endpoint",
                      "defaultValue": "${{nocodb-attachments.ENDPOINT}}"
                    },
                    "NC_DISABLE_TELE": {
                      "isOptional": false,
                      "description": "Disable usage telemetry",
                      "defaultValue": "true"
                    },
                    "NC_S3_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Object storage access key",
                      "defaultValue": "${{nocodb-attachments.ACCESS_KEY_ID}}"
                    },
                    "NC_ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First super-admin password",
                      "defaultValue": "{{NC_ADMIN_PASSWORD}}"
                    },
                    "NC_S3_BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Attachment bucket name",
                      "defaultValue": "${{nocodb-attachments.BUCKET}}"
                    },
                    "NC_AUTH_JWT_SECRET": {
                      "isOptional": false,
                      "description": "Signs user sessions",
                      "defaultValue": "{{NC_AUTH_JWT_SECRET}}"
                    },
                    "NC_S3_ACCESS_SECRET": {
                      "isOptional": false,
                      "description": "Object storage secret key",
                      "defaultValue": "${{nocodb-attachments.SECRET_ACCESS_KEY}}"
                    },
                    "NC_SECURE_ATTACHMENTS": {
                      "isOptional": false,
                      "description": "Serve attachments as signed URLs",
                      "defaultValue": "true"
                    },
                    "NC_DISABLE_SUPPORT_CHAT": {
                      "isOptional": false,
                      "description": "Disable third-party support widget",
                      "defaultValue": "true"
                    },
                    "NC_CONNECTION_ENCRYPT_KEY": {
                      "isOptional": false,
                      "description": "Encrypts external data-source credentials",
                      "defaultValue": "{{NC_CONNECTION_ENCRYPT_KEY}}"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8080": {
                        "port": 8080
                      }
                    }
                  },
                  "volumeMounts": {
                    "4c1f3e06-60f2-48a3-9c5c-eda6328f9cca": {
                      "mountPath": "/usr/app/data"
                    }
                  }
                },
                "5d678995-145b-4cd6-a32f-85c54b39719e": {
                  "icon": "https://cdn.sanity.io/images/sy1jschh/production/0ce0bfdcfbdbf69662b1116671f97c2dd788b655-157x157.svg",
                  "name": "Redis",
                  "deploy": {
                    "startCommand": "/bin/sh -c \"rm -rf $RAILWAY_VOLUME_MOUNT_PATH/lost+found/ && exec docker-entrypoint.sh redis-server --requirepass $REDIS_PASSWORD --save 60 1 --dir $RAILWAY_VOLUME_MOUNT_PATH\"",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "redis:8.2.1"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Standard Redis port",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Default ACL user created on first boot",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "redis://${{REDISUSER}}:${{REDIS_PASSWORD}}@${{REDISHOST}}:${{REDISPORT}}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Convenience alias of the generated password",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated password for the default user",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    },
                    "REDIS_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "redis://default:${{REDIS_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}"
                    }
                  },
                  "volumeMounts": {
                    "5d678995-145b-4cd6-a32f-85c54b39719e": {
                      "mountPath": "/data"
                    }
                  },
                  "haTemplateCode": "redis-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxies",
                      "options": [
                        1,
                        2
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "HAProxy instances routing writes to the primary",
                      "defaultValue": 2
                    },
                    "replica": {
                      "label": "Redis Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "Redis",
                      "description": "Nodes running Redis + colocated Sentinel",
                      "defaultValue": 2
                    },
                    "internal": null,
                    "description": "This will convert your Redis instance to an HA cluster with Sentinel failover and HAProxy routing to the primary."
                  }
                },
                "d0718929-c1f3-4529-8408-23a77240815c": {
                  "icon": "https://devicons.railway.app/i/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Data directory, a subdirectory of the volume mount",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Private hostname, reachable only inside the project",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Standard PostgreSQL port",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser name",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "libpq alias of the default database",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "libpq alias of the superuser password",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Default database created on first boot",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection string, use this from other services",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Superuser created on first boot",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "Validity window of the generated self-signed TLS certificate",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Generated superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "DATABASE_PUBLIC_URL": {
                      "description": "Public connection string over the TCP proxy, for external tools",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_TCP_PROXY_DOMAIN}}:${{RAILWAY_TCP_PROXY_PORT}}/${{PGDATABASE}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Grace period for in-flight connections on redeploy",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "d0718929-c1f3-4529-8408-23a77240815c": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  },
                  "haTemplateCode": "postgres-ha",
                  "haConversionConfig": {
                    "edge": {
                      "label": "Reverse Proxy",
                      "options": [
                        2,
                        3,
                        4,
                        5
                      ],
                      "nodeLabel": "HAProxy",
                      "description": "Routes traffic to the primary",
                      "defaultValue": 3
                    },
                    "replica": {
                      "label": "Replicas",
                      "options": [
                        2,
                        3,
                        4,
                        5,
                        6,
                        7
                      ],
                      "nodeLabel": "Postgres",
                      "description": "Streaming replicas for automatic failover",
                      "defaultValue": 2
                    },
                    "internal": {
                      "label": "Coordinator Nodes",
                      "options": [
                        3,
                        5,
                        7,
                        9
                      ],
                      "nodeLabel": "etcd",
                      "defaultValue": 3
                    },
                    "description": "This will convert your Postgres database to an HA cluster with Patroni failover and etcd consensus."
                  }
                },
                "e7625b5f-d128-4cfa-a136-7ad7cb1bb977": {
                  "icon": "https://cdn.jsdelivr.net/gh/selfhst/icons/svg/nocodb.svg",
                  "name": "nocodb-worker",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "nocodb/nocodb:2026.08.0"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Internal listen port",
                      "defaultValue": "8080"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Metadata store connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "NC_REDIS_URL": {
                      "isOptional": false,
                      "description": "Required — worker will not start without it",
                      "defaultValue": "${{Redis.REDIS_URL}}"
                    },
                    "NC_S3_REGION": {
                      "isOptional": false,
                      "description": "Attachment bucket region",
                      "defaultValue": "${{nocodb-attachments.REGION}}"
                    },
                    "NODE_OPTIONS": {
                      "isOptional": false,
                      "description": "Cap Node heap to container limit",
                      "defaultValue": "--max-old-space-size=4096"
                    },
                    "NC_PUBLIC_URL": {
                      "isOptional": false,
                      "description": "Public base URL for generated links",
                      "defaultValue": "https://${{nocodb.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "NC_S3_ENDPOINT": {
                      "isOptional": false,
                      "description": "Object storage endpoint",
                      "defaultValue": "${{nocodb-attachments.ENDPOINT}}"
                    },
                    "NC_DISABLE_TELE": {
                      "isOptional": false,
                      "description": "Disable usage telemetry",
                      "defaultValue": "true"
                    },
                    "NC_S3_ACCESS_KEY": {
                      "isOptional": false,
                      "description": "Object storage access key",
                      "defaultValue": "${{nocodb-attachments.ACCESS_KEY_ID}}"
                    },
                    "NC_S3_BUCKET_NAME": {
                      "isOptional": false,
                      "description": "Attachment bucket name",
                      "defaultValue": "${{nocodb-attachments.BUCKET}}"
                    },
                    "NC_AUTH_JWT_SECRET": {
                      "isOptional": false,
                      "description": "Must match the app service",
                      "defaultValue": "${{nocodb.NC_AUTH_JWT_SECRET}}"
                    },
                    "NC_S3_ACCESS_SECRET": {
                      "isOptional": false,
                      "description": "Object storage secret key",
                      "defaultValue": "${{nocodb-attachments.SECRET_ACCESS_KEY}}"
                    },
                    "NC_WORKER_CONTAINER": {
                      "isOptional": false,
                      "description": "Run this container in worker role",
                      "defaultValue": "true"
                    },
                    "NC_SECURE_ATTACHMENTS": {
                      "isOptional": false,
                      "description": "Serve attachments as signed URLs",
                      "defaultValue": "true"
                    },
                    "NC_DISABLE_SUPPORT_CHAT": {
                      "isOptional": false,
                      "description": "Disable third-party support widget",
                      "defaultValue": "true"
                    },
                    "NC_CONNECTION_ENCRYPT_KEY": {
                      "isOptional": false,
                      "description": "Must match the app service",
                      "defaultValue": "${{nocodb.NC_CONNECTION_ENCRYPT_KEY}}"
                    }
                  },
                  "volumeMounts": {
                    "e7625b5f-d128-4cfa-a136-7ad7cb1bb977": {
                      "mountPath": "/usr/app/data"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "nocodb",
      "method": "GET",
      "path": "/api/v1/health",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-10T16:14:52.212Z",
  "generator_version": "0.1.0",
  "status": "degraded",
  "validated_at": "2026-09-10T18:44:42.446Z",
  "success_rate_30d": 0.5,
  "validation": {
    "last_run_id": "run_cb185ba25fb041d48109",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": false,
        "detail": "Your workspace has been restricted. Please contact support to resolve this."
      }
    ],
    "typical_ready_seconds": 67,
    "typical_build_seconds": 0,
    "typical_start_seconds": 10,
    "slowest_service": "nocodb-worker"
  }
}
