mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
29 lines
606 B
YAML
29 lines
606 B
YAML
---
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
title: Install Docker plugin manifest
|
|
type: object
|
|
properties:
|
|
system:
|
|
type: object
|
|
properties:
|
|
architecture:
|
|
type: string
|
|
enum: [amd64]
|
|
release:
|
|
not:
|
|
type: string
|
|
enum:
|
|
- squeeze
|
|
- oldstable
|
|
plugins:
|
|
type: object
|
|
properties:
|
|
docker_daemon:
|
|
type: object
|
|
properties:
|
|
version:
|
|
pattern: '^\d\.\d{1,2}\.\d$'
|
|
type: string
|
|
docker_opts:
|
|
type: string
|
|
additionalProperties: false
|