{
  "manifest_version": "1.0.0",
  "template": {
    "id": "9372a487-1114-41b2-88fd-dbef8ea595dd",
    "slug": "woocommerce-store",
    "name": "WooCommerce",
    "description": "Online store software for selling products on your own website",
    "url": "https://railway.com/deploy/woocommerce-store",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/woocommerce-railway"
    }
  },
  "services": [
    {
      "name": "woocommerce",
      "source": {
        "repo": "https://github.com/gridalpha/woocommerce-railway"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/www/html",
      "http": true
    },
    {
      "name": "Redis",
      "source": {
        "image": "redis:8.2"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": false
    },
    {
      "name": "mailpit",
      "source": {
        "image": "axllent/mailpit:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    },
    {
      "name": "MySQL",
      "source": {
        "image": "mysql:9.4"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/mysql",
      "http": false
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "woocommerce",
      "description": "Apache listening port",
      "secret": false,
      "strategy": "default",
      "default": "80"
    },
    {
      "key": "MYSQL_URL",
      "service": "woocommerce",
      "description": "Root URL, used once at boot to provision a scoped account",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WP_REDIS_HOST",
      "service": "woocommerce",
      "description": "Object cache host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WP_REDIS_PORT",
      "service": "woocommerce",
      "description": "Object cache port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WORDPRESS_DB_HOST",
      "service": "woocommerce",
      "description": "Private database host and port",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WORDPRESS_DB_NAME",
      "service": "woocommerce",
      "description": "Database the store owns",
      "secret": false,
      "strategy": "default",
      "default": "wordpress"
    },
    {
      "key": "WORDPRESS_DB_USER",
      "service": "woocommerce",
      "description": "Scoped application user, not root",
      "secret": false,
      "strategy": "default",
      "default": "wordpress"
    },
    {
      "key": "WP_REDIS_PASSWORD",
      "service": "woocommerce",
      "description": "Object cache password",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "WORDPRESS_AUTH_KEY",
      "service": "woocommerce",
      "description": "Login cookie signing salt",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WORDPRESS_AUTH_SALT",
      "service": "woocommerce",
      "description": "Login cookie signing salt",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WORDPRESS_MAIL_FROM",
      "service": "woocommerce",
      "description": "Sender address for all mail",
      "secret": false,
      "strategy": "default",
      "default": "shop@example.dev"
    },
    {
      "key": "WORDPRESS_NONCE_KEY",
      "service": "woocommerce",
      "description": "Form nonce signing salt",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WORDPRESS_SMTP_HOST",
      "service": "woocommerce",
      "description": "Outbound mail host",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "WORDPRESS_SMTP_PORT",
      "service": "woocommerce",
      "description": "Outbound mail port",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "WOOCOMMERCE_CURRENCY",
      "service": "woocommerce",
      "description": "Store currency code",
      "secret": false,
      "strategy": "default",
      "default": "USD"
    },
    {
      "key": "WORDPRESS_ADMIN_USER",
      "service": "woocommerce",
      "description": "First administrator, read once at install",
      "secret": false,
      "strategy": "default",
      "default": "storeadmin"
    },
    {
      "key": "WORDPRESS_NONCE_SALT",
      "service": "woocommerce",
      "description": "Form nonce signing salt",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WORDPRESS_SITE_TITLE",
      "service": "woocommerce",
      "description": "Store name in header and email",
      "secret": false,
      "strategy": "default",
      "default": "My Store"
    },
    {
      "key": "WORDPRESS_ADMIN_EMAIL",
      "service": "woocommerce",
      "description": "First administrator email address",
      "secret": false,
      "strategy": "default",
      "default": "admin@example.dev"
    },
    {
      "key": "WORDPRESS_DB_PASSWORD",
      "service": "woocommerce",
      "description": "Password for the scoped user",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "WORDPRESS_SMTP_SECURE",
      "service": "woocommerce",
      "description": "Encryption: none, tls or ssl",
      "secret": false,
      "strategy": "default",
      "default": "none"
    },
    {
      "key": "WOOCOMMERCE_STORE_CITY",
      "service": "woocommerce",
      "description": "Store city",
      "secret": false,
      "strategy": "default",
      "default": "San Francisco"
    },
    {
      "key": "WORDPRESS_TABLE_PREFIX",
      "service": "woocommerce",
      "description": "WordPress table prefix",
      "secret": false,
      "strategy": "default",
      "default": "wp_"
    },
    {
      "key": "WORDPRESS_LOGGED_IN_KEY",
      "service": "woocommerce",
      "description": "Login cookie signing salt",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WORDPRESS_ADMIN_PASSWORD",
      "service": "woocommerce",
      "description": "First administrator password, read once at install",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "WORDPRESS_LOGGED_IN_SALT",
      "service": "woocommerce",
      "description": "Login cookie signing salt",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WORDPRESS_MAIL_FROM_NAME",
      "service": "woocommerce",
      "description": "Sender display name",
      "secret": false,
      "strategy": "default",
      "default": "My Store"
    },
    {
      "key": "WOOCOMMERCE_STORE_ADDRESS",
      "service": "woocommerce",
      "description": "Store street address",
      "secret": false,
      "strategy": "default",
      "default": "1 Market Street"
    },
    {
      "key": "WOOCOMMERCE_STORE_COUNTRY",
      "service": "woocommerce",
      "description": "Store country and state code",
      "secret": false,
      "strategy": "default",
      "default": "US:CA"
    },
    {
      "key": "WORDPRESS_SECURE_AUTH_KEY",
      "service": "woocommerce",
      "description": "Login cookie signing salt",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WOOCOMMERCE_STORE_POSTCODE",
      "service": "woocommerce",
      "description": "Store postal code",
      "secret": false,
      "strategy": "default",
      "default": "94105"
    },
    {
      "key": "WORDPRESS_SECURE_AUTH_SALT",
      "service": "woocommerce",
      "description": "Login cookie signing salt",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "WOOCOMMERCE_SEED_SAMPLE_PRODUCTS",
      "service": "woocommerce",
      "description": "Seed six demo products on first boot",
      "secret": false,
      "strategy": "default",
      "default": "true"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "woocommerce",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "15"
    },
    {
      "key": "REDISHOST",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "REDISPORT",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "6379"
    },
    {
      "key": "REDISUSER",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "default"
    },
    {
      "key": "REDIS_URL",
      "service": "Redis",
      "description": "Private connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDISPASSWORD",
      "service": "Redis",
      "description": "Data panel alias, not read by the server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "REDIS_PASSWORD",
      "service": "Redis",
      "description": "Auth password, read by the server",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "PORT",
      "service": "mailpit",
      "description": "Web inbox listening port",
      "secret": false,
      "strategy": "default",
      "default": "8025"
    },
    {
      "key": "MP_UI_AUTH",
      "service": "mailpit",
      "description": "Basic auth for the web inbox",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MP_DATABASE",
      "service": "mailpit",
      "description": "Message store on the volume",
      "secret": false,
      "strategy": "default",
      "default": "/data/mailpit.db"
    },
    {
      "key": "MP_MAX_MESSAGES",
      "service": "mailpit",
      "description": "Messages retained before rotation",
      "secret": false,
      "strategy": "default",
      "default": "5000"
    },
    {
      "key": "MP_UI_BIND_ADDR",
      "service": "mailpit",
      "description": "Web inbox bind address",
      "secret": false,
      "strategy": "default",
      "default": "[::]:8025"
    },
    {
      "key": "MP_SMTP_BIND_ADDR",
      "service": "mailpit",
      "description": "Private SMTP listener bind address",
      "secret": false,
      "strategy": "default",
      "default": "[::]:1025"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "mailpit",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "10"
    },
    {
      "key": "MYSQLHOST",
      "service": "MySQL",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MYSQLPORT",
      "service": "MySQL",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "3306"
    },
    {
      "key": "MYSQLUSER",
      "service": "MySQL",
      "description": "Data panel alias for the superuser, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "root"
    },
    {
      "key": "MYSQL_URL",
      "service": "MySQL",
      "description": "Private connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "MYSQLDATABASE",
      "service": "MySQL",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQLPASSWORD",
      "service": "MySQL",
      "description": "Data panel alias, not read by the server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "MYSQL_DATABASE",
      "service": "MySQL",
      "description": "Database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "MYSQL_ROOT_PASSWORD",
      "service": "MySQL",
      "description": "Root password, read by the entrypoint",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "woocommerce-store"
      }
    },
    "cli": "railway deploy --template woocommerce-store",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "9372a487-1114-41b2-88fd-dbef8ea595dd",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "42d7ab02-6ec6-45b1-8d92-db2a83aa3283": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/woocommerce.svg",
                  "name": "woocommerce",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/woocommerce-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Apache listening port",
                      "defaultValue": "80"
                    },
                    "MYSQL_URL": {
                      "isOptional": false,
                      "description": "Root URL, used once at boot to provision a scoped account",
                      "defaultValue": "${{MySQL.MYSQL_URL}}"
                    },
                    "WP_REDIS_HOST": {
                      "isOptional": false,
                      "description": "Object cache host",
                      "defaultValue": "${{Redis.REDISHOST}}"
                    },
                    "WP_REDIS_PORT": {
                      "isOptional": false,
                      "description": "Object cache port",
                      "defaultValue": "${{Redis.REDISPORT}}"
                    },
                    "WORDPRESS_DB_HOST": {
                      "isOptional": false,
                      "description": "Private database host and port",
                      "defaultValue": "${{MySQL.MYSQLHOST}}:${{MySQL.MYSQLPORT}}"
                    },
                    "WORDPRESS_DB_NAME": {
                      "isOptional": false,
                      "description": "Database the store owns",
                      "defaultValue": "wordpress"
                    },
                    "WORDPRESS_DB_USER": {
                      "isOptional": false,
                      "description": "Scoped application user, not root",
                      "defaultValue": "wordpress"
                    },
                    "WP_REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Object cache password",
                      "defaultValue": "${{Redis.REDISPASSWORD}}"
                    },
                    "WORDPRESS_AUTH_KEY": {
                      "isOptional": false,
                      "description": "Login cookie signing salt",
                      "defaultValue": "{{WORDPRESS_AUTH_KEY}}"
                    },
                    "WORDPRESS_AUTH_SALT": {
                      "isOptional": false,
                      "description": "Login cookie signing salt",
                      "defaultValue": "{{WORDPRESS_AUTH_SALT}}"
                    },
                    "WORDPRESS_MAIL_FROM": {
                      "isOptional": false,
                      "description": "Sender address for all mail",
                      "defaultValue": "shop@example.dev"
                    },
                    "WORDPRESS_NONCE_KEY": {
                      "isOptional": false,
                      "description": "Form nonce signing salt",
                      "defaultValue": "{{WORDPRESS_NONCE_KEY}}"
                    },
                    "WORDPRESS_SMTP_HOST": {
                      "isOptional": false,
                      "description": "Outbound mail host",
                      "defaultValue": "${{mailpit.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "WORDPRESS_SMTP_PORT": {
                      "isOptional": false,
                      "description": "Outbound mail port",
                      "defaultValue": "1025"
                    },
                    "WOOCOMMERCE_CURRENCY": {
                      "isOptional": false,
                      "description": "Store currency code",
                      "defaultValue": "USD"
                    },
                    "WORDPRESS_ADMIN_USER": {
                      "isOptional": false,
                      "description": "First administrator, read once at install",
                      "defaultValue": "storeadmin"
                    },
                    "WORDPRESS_NONCE_SALT": {
                      "isOptional": false,
                      "description": "Form nonce signing salt",
                      "defaultValue": "{{WORDPRESS_NONCE_SALT}}"
                    },
                    "WORDPRESS_SITE_TITLE": {
                      "isOptional": false,
                      "description": "Store name in header and email",
                      "defaultValue": "My Store"
                    },
                    "WORDPRESS_ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First administrator email address",
                      "defaultValue": "admin@example.dev"
                    },
                    "WORDPRESS_DB_PASSWORD": {
                      "isOptional": false,
                      "description": "Password for the scoped user",
                      "defaultValue": "{{WORDPRESS_DB_PASSWORD}}"
                    },
                    "WORDPRESS_SMTP_SECURE": {
                      "isOptional": false,
                      "description": "Encryption: none, tls or ssl",
                      "defaultValue": "none"
                    },
                    "WOOCOMMERCE_STORE_CITY": {
                      "isOptional": false,
                      "description": "Store city",
                      "defaultValue": "San Francisco"
                    },
                    "WORDPRESS_TABLE_PREFIX": {
                      "isOptional": false,
                      "description": "WordPress table prefix",
                      "defaultValue": "wp_"
                    },
                    "WORDPRESS_LOGGED_IN_KEY": {
                      "isOptional": false,
                      "description": "Login cookie signing salt",
                      "defaultValue": "{{WORDPRESS_LOGGED_IN_KEY}}"
                    },
                    "WORDPRESS_ADMIN_PASSWORD": {
                      "isOptional": false,
                      "description": "First administrator password, read once at install",
                      "defaultValue": "{{WORDPRESS_ADMIN_PASSWORD}}"
                    },
                    "WORDPRESS_LOGGED_IN_SALT": {
                      "isOptional": false,
                      "description": "Login cookie signing salt",
                      "defaultValue": "{{WORDPRESS_LOGGED_IN_SALT}}"
                    },
                    "WORDPRESS_MAIL_FROM_NAME": {
                      "isOptional": false,
                      "description": "Sender display name",
                      "defaultValue": "My Store"
                    },
                    "WOOCOMMERCE_STORE_ADDRESS": {
                      "isOptional": false,
                      "description": "Store street address",
                      "defaultValue": "1 Market Street"
                    },
                    "WOOCOMMERCE_STORE_COUNTRY": {
                      "isOptional": false,
                      "description": "Store country and state code",
                      "defaultValue": "US:CA"
                    },
                    "WORDPRESS_SECURE_AUTH_KEY": {
                      "isOptional": false,
                      "description": "Login cookie signing salt",
                      "defaultValue": "{{WORDPRESS_SECURE_AUTH_KEY}}"
                    },
                    "WOOCOMMERCE_STORE_POSTCODE": {
                      "isOptional": false,
                      "description": "Store postal code",
                      "defaultValue": "94105"
                    },
                    "WORDPRESS_SECURE_AUTH_SALT": {
                      "isOptional": false,
                      "description": "Login cookie signing salt",
                      "defaultValue": "{{WORDPRESS_SECURE_AUTH_SALT}}"
                    },
                    "WOOCOMMERCE_SEED_SAMPLE_PRODUCTS": {
                      "isOptional": false,
                      "description": "Seed six demo products on first boot",
                      "defaultValue": "true"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "15"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:80": {
                        "port": 80
                      }
                    }
                  },
                  "volumeMounts": {
                    "42d7ab02-6ec6-45b1-8d92-db2a83aa3283": {
                      "mountPath": "/var/www/html"
                    }
                  }
                },
                "7ab616a7-977a-40ee-8518-4295dedc575a": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/redis.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"
                  },
                  "variables": {
                    "REDISHOST": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "REDISPORT": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "6379"
                    },
                    "REDISUSER": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "default"
                    },
                    "REDIS_URL": {
                      "isOptional": false,
                      "description": "Private connection string",
                      "defaultValue": "redis://${{ REDISUSER }}:${{ REDIS_PASSWORD }}@${{ REDISHOST }}:${{ REDISPORT }}"
                    },
                    "REDISPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{REDIS_PASSWORD}}"
                    },
                    "REDIS_PASSWORD": {
                      "isOptional": false,
                      "description": "Auth password, read by the server",
                      "defaultValue": "{{REDIS_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "7ab616a7-977a-40ee-8518-4295dedc575a": {
                      "mountPath": "/data"
                    }
                  }
                },
                "c09bf960-194f-4ce5-ba6a-5c6d1aee4ba8": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/mailpit.svg",
                  "name": "mailpit",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/livez",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "axllent/mailpit:latest"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Web inbox listening port",
                      "defaultValue": "8025"
                    },
                    "MP_UI_AUTH": {
                      "isOptional": false,
                      "description": "Basic auth for the web inbox",
                      "defaultValue": "{{MP_UI_AUTH}}"
                    },
                    "MP_DATABASE": {
                      "isOptional": false,
                      "description": "Message store on the volume",
                      "defaultValue": "/data/mailpit.db"
                    },
                    "MP_MAX_MESSAGES": {
                      "isOptional": false,
                      "description": "Messages retained before rotation",
                      "defaultValue": "5000"
                    },
                    "MP_UI_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Web inbox bind address",
                      "defaultValue": "[::]:8025"
                    },
                    "MP_SMTP_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Private SMTP listener bind address",
                      "defaultValue": "[::]:1025"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "10"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8025": {
                        "port": 8025
                      }
                    }
                  },
                  "volumeMounts": {
                    "c09bf960-194f-4ce5-ba6a-5c6d1aee4ba8": {
                      "mountPath": "/data"
                    }
                  }
                },
                "d313ba1a-7a42-46bb-b04b-aaaac57bab07": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/mysql.svg",
                  "name": "MySQL",
                  "deploy": {
                    "startCommand": "docker-entrypoint.sh mysqld --innodb-use-native-aio=0 --disable-log-bin --performance_schema=0 --innodb-buffer-pool-size=1G",
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "mysql:9.4"
                  },
                  "variables": {
                    "MYSQLHOST": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "MYSQLPORT": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "3306"
                    },
                    "MYSQLUSER": {
                      "isOptional": false,
                      "description": "Data panel alias for the superuser, not read by the server",
                      "defaultValue": "root"
                    },
                    "MYSQL_URL": {
                      "isOptional": false,
                      "description": "Private connection string",
                      "defaultValue": "mysql://${{ MYSQLUSER }}:${{ MYSQL_ROOT_PASSWORD }}@${{ RAILWAY_PRIVATE_DOMAIN }}:3306/${{ MYSQL_DATABASE }}"
                    },
                    "MYSQLDATABASE": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{ MYSQL_DATABASE }}"
                    },
                    "MYSQLPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{ MYSQL_ROOT_PASSWORD }}"
                    },
                    "MYSQL_DATABASE": {
                      "isOptional": false,
                      "description": "Database created on first boot",
                      "defaultValue": "railway"
                    },
                    "MYSQL_ROOT_PASSWORD": {
                      "isOptional": false,
                      "description": "Root password, read by the entrypoint",
                      "defaultValue": "{{MYSQL_ROOT_PASSWORD}}"
                    }
                  },
                  "volumeMounts": {
                    "d313ba1a-7a42-46bb-b04b-aaaac57bab07": {
                      "mountPath": "/var/lib/mysql"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "woocommerce",
      "method": "GET",
      "path": "/",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-20T22:14:37.505Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-19T14:41:22.784Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_514ccd306f00417b80ee",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 122,
    "typical_build_seconds": 61,
    "typical_start_seconds": 12,
    "slowest_service": "woocommerce"
  }
}
