2015-04-20 17:52:07 +03:00
|
|
|
# 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.
|
|
|
|
|
2015-04-09 10:18:33 +03:00
|
|
|
Namespaces:
|
2016-06-16 20:49:00 +03:00
|
|
|
=: com.mirantis.docker
|
2015-04-09 10:18:33 +03:00
|
|
|
|
|
|
|
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: {}
|
|
|
|
|
2016-07-22 16:52:44 +06:00
|
|
|
privileged:
|
|
|
|
Contract: $.bool().notNull()
|
|
|
|
Default: false
|
|
|
|
|
2015-04-09 10:18:33 +03:00
|
|
|
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())
|
2016-07-22 16:52:44 +06:00
|
|
|
volumes: $volumeRepresentations
|
|
|
|
privileged: $.privileged
|