fly-io · Schema

MachineMount

A volume mount definition for a Fly Machine.

Properties

Name Type Description
volume string The ID of the Fly Volume to mount.
path string Filesystem path inside the Machine where the volume is mounted.
size_gb integer Size of the volume in gigabytes.
View JSON Schema on GitHub

JSON Schema

fly-io-machinemount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MachineMount",
  "title": "MachineMount",
  "type": "object",
  "description": "A volume mount definition for a Fly Machine.",
  "properties": {
    "volume": {
      "type": "string",
      "description": "The ID of the Fly Volume to mount."
    },
    "path": {
      "type": "string",
      "description": "Filesystem path inside the Machine where the volume is mounted."
    },
    "size_gb": {
      "type": "integer",
      "description": "Size of the volume in gigabytes."
    }
  }
}