Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand docker manifest capabilities to include network and ports configuration #1601

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ The value should contain a JSON serialized as a string.
| /container | object | no | Container related properties. |
| /container/privileged | string | no | Start the container in privileged mode. Later versions of manifest might extend container properties to include docker capabilities instead of privileged mode. Defaults to False. |
| /container/volumes | list of strings | no | List of mounts for a container. The same syntax used for '-v' parameter for "docker run".<p>Example: "\<src\>:\<dest\>:\<options\>". Defaults to []. |
| /container/network | string | no | Define the container network type. e.g.: 'bridge', 'host', etc.
| /container/ports | list of strings | no | List of ports to publish for the docker. e.g.: ["8080:8080", "22:22"]
| /container/mounts | list of objects | no | List of mounts for a container. Defaults to []. |
| /container/mounts/[id]/source | string | yes | Source for mount |
| /container/mounts/[id]/target | string | yes | Target for mount |
Expand Down