mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 23:36:29 +00:00
42 lines
924 B
YAML
42 lines
924 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: Docker manifest
|
|
type: object
|
|
properties:
|
|
provider:
|
|
type: object
|
|
properties:
|
|
labels:
|
|
type: object
|
|
properties:
|
|
# https://github.com/projectatomic/ContainerApplicationGenericLabels
|
|
distribution-scope:
|
|
type: string
|
|
enum:
|
|
- private
|
|
- authoritative-source-only
|
|
- restricted
|
|
- public
|
|
patternProperties:
|
|
^.+$: {type: string}
|
|
dockerfile:
|
|
type: string
|
|
system:
|
|
type: object
|
|
properties:
|
|
bootloader:
|
|
type: string
|
|
enum: [none]
|
|
volume:
|
|
type: object
|
|
properties:
|
|
backing:
|
|
type: string
|
|
enum: [folder]
|
|
partitions:
|
|
type: object
|
|
properties:
|
|
type:
|
|
type: string
|
|
enum: [none]
|
|
required: [backing]
|