@daocloud-proto/zestu 0.9.0-dev-d5eb3a5a → 0.9.0-dev-b3453936
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -147,6 +147,7 @@ export type ContainerInstance = {
|
|
|
147
147
|
ssh?: SSHInfo
|
|
148
148
|
schedule?: Schedule
|
|
149
149
|
serviceEnable?: ServiceEnable
|
|
150
|
+
enableDockerInDocker?: boolean
|
|
150
151
|
}
|
|
151
152
|
|
|
152
153
|
export type Schedule = {
|
|
@@ -181,6 +182,7 @@ export type CreateContainerInstanceRequest = {
|
|
|
181
182
|
volumeSpec?: VolumeSpec[]
|
|
182
183
|
sshKeyLoginEnable?: boolean
|
|
183
184
|
schedule?: Schedule
|
|
185
|
+
enableDockerInDocker?: boolean
|
|
184
186
|
}
|
|
185
187
|
|
|
186
188
|
export type Image = {
|
|
@@ -309,6 +311,7 @@ export type UpdateContainerInstanceRequest = {
|
|
|
309
311
|
schedule?: Schedule
|
|
310
312
|
volumeSpec?: VolumeSpec[]
|
|
311
313
|
instanceSpec?: InstanceSpec
|
|
314
|
+
enableDockerInDocker?: boolean
|
|
312
315
|
}
|
|
313
316
|
|
|
314
317
|
export type UpdateContainerInstanceResponse = {
|