You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Command: command executed when the container starts. This overrides the default command defined in the container image. This is usually the main executable, or entry point script to run.
1002
+
Command []string`json:"command"`
1003
+
1004
+
// Args: arguments passed to the command specified in the "command" field. These override the default arguments from the container image, and behave like command-line parameters.
1005
+
Args []string`json:"args"`
1000
1006
}
1001
1007
1002
1008
// Cron: cron.
@@ -1248,6 +1254,12 @@ type CreateContainerRequest struct {
// Command: command executed when the container starts. This overrides the default command defined in the container image. This is usually the main executable, or entry point script to run.
1259
+
Command []string`json:"command"`
1260
+
1261
+
// Args: arguments passed to the command specified in the "command" field. These override the default arguments from the container image, and behave like command-line parameters.
1262
+
Args []string`json:"args"`
1251
1263
}
1252
1264
1253
1265
// CreateCronRequest: create cron request.
@@ -1852,6 +1864,12 @@ type UpdateContainerRequest struct {
// Command: command executed when the container starts. This overrides the default command defined in the container image. This is usually the main executable, or entry point script to run.
1869
+
Command*[]string`json:"command,omitempty"`
1870
+
1871
+
// Args: arguments passed to the command specified in the "command" field. These override the default arguments from the container image, and behave like command-line parameters.
0 commit comments