Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. {
  2. "type": "object",
  3. "properties": {
  4. "AWSEBDockerrunVersion": {
  5. "type": "integer",
  6. "minimum": 1,
  7. "maximum": 2
  8. },
  9. "authentication": {
  10. "type": "object",
  11. "properties": {
  12. "bucket": {
  13. "type": "string"
  14. },
  15. "key": {
  16. "type": "string"
  17. }
  18. }
  19. },
  20. "volumes": {
  21. "type": "array",
  22. "items": {
  23. "type": "object",
  24. "properties": {
  25. "name": {
  26. "type": "string"
  27. },
  28. "host": {
  29. "type": "object",
  30. "properties": {
  31. "sourcePath": {
  32. "type": "string"
  33. }
  34. }
  35. }
  36. }
  37. }
  38. },
  39. "containerDefinitions": {
  40. "type": "array",
  41. "items": {
  42. "type": "object",
  43. "required": [
  44. "name",
  45. "image"
  46. ],
  47. "properties": {
  48. "name": {
  49. "type": "string"
  50. },
  51. "image": {
  52. "type": "string"
  53. },
  54. "memory": {
  55. "type": "integer"
  56. },
  57. "essential": {
  58. "type": "boolean"
  59. },
  60. "command": {
  61. "type": "array",
  62. "items": {
  63. "type": "string"
  64. }
  65. },
  66. "mountPoints": {
  67. "type": "array",
  68. "items": {
  69. "type": "object",
  70. "properties": {
  71. "sourceVolume": {
  72. "type": "string"
  73. },
  74. "containerPath": {
  75. "type": "string"
  76. },
  77. "readOnly": {
  78. "type": "boolean"
  79. }
  80. }
  81. }
  82. },
  83. "portMappings": {
  84. "type": "array",
  85. "items": {
  86. "type": "object",
  87. "properties": {
  88. "containerPort": {
  89. "type": "integer"
  90. },
  91. "hostPort": {
  92. "type": "integer"
  93. }
  94. }
  95. }
  96. },
  97. "environment": {
  98. "type": "array",
  99. "items": {
  100. "type": "object",
  101. "properties": {
  102. "name": {
  103. "type": "string"
  104. },
  105. "value": {
  106. "type": "string"
  107. }
  108. }
  109. }
  110. },
  111. "links": {
  112. "type": "array",
  113. "items": {
  114. "type": "string"
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement