ba744855df
Change-Id: I2155b27af1e59bf907d7ad03dedada98ef8ebb76
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
Namespaces:
|
|
=: com.mirantis.docker
|
|
|
|
Name: DockerContainer
|
|
|
|
Properties:
|
|
name:
|
|
Contract: $.string().notNull()
|
|
|
|
image:
|
|
Contract: $.string().notNull()
|
|
|
|
commands:
|
|
Contract:
|
|
- $.string().notNull()
|
|
Default: []
|
|
|
|
env:
|
|
Contract:
|
|
$.string().notNull(): $.string().notNull()
|
|
Default: {}
|
|
|
|
ports:
|
|
Contract:
|
|
- $.class(ApplicationPort)
|
|
Default: []
|
|
|
|
volumes:
|
|
Contract:
|
|
$.string().notNull(): $.class(DockerVolume).notNull()
|
|
Default: {}
|
|
|
|
privileged:
|
|
Contract: $.bool().notNull()
|
|
Default: false
|
|
|
|
Methods:
|
|
getRepresentation:
|
|
Body:
|
|
- $volumeRepresentations: {}
|
|
- For: volume
|
|
In: $.volumes
|
|
Do:
|
|
- $volumeRepresentations[$volume]: $.volumes.get($volume).getRepresentation()
|
|
- Return:
|
|
name: $.name
|
|
image: $.image
|
|
env: env
|
|
ports: $.ports.select($.getRepresentation())
|
|
volumes: $volumeRepresentations
|
|
privileged: $.privileged
|